Recovering data from USB with Macbook backup files on it

ytesfay80

Member
I found this code that allowed me to read and copy the files from my linux computer.
https://superuser.com/questions/3872...lumes-in-linux

This code worked for me.

bindfs is the answer. It will take an already mounted file system and provide a view of it with whichever uid you'd like:

- sudo apt-get install bindfs
- mkdir ~/myUIDdiskFoo
- sudo bindfs -u $(id -u) -g $(id -g) /media/diskFoo ~/myUIDdiskFoo
 
Top