I installed Ubuntu and Windows on my MacBook and Ubuntu is my primary OS; however, all of my media stays on my OSX partition. I want to be able to access it (at least my OSX user's home folder) from Ubuntu without having to launch a media player (or anything else) as root. Also, because I occasionally want to fire up my machine in OSX, I don't want to change anything that I would need to change back frequently (I read a lot about changing UID--I don't exactly understand what this entails, but I wouldn't want to have to change my UID back and forth depending on which OS I'm using. Similarly, I don't want to change file system permissions back and forth).
Also, I saw something about a "noowner" option, but that doesn't seem to do what I want it to.
So I guess I'd like to be able to do something like this:
sudo mount -t hfsplus -o noowner /dev/sda2/ /media/Mac
And then be able to access all of my media (at least everything in my OSX user's Home folder) without dropping in as root. (for clarity: the above command line entry doesn't do what I want it to do, but I want to be able to do something similar).
Or would it be better to change my UID? And if so, how?
bindfs
is the answer. It will take an already mounted file system and provide a view of it with whichever uid you'd like:I wasn't able to figure out how to ignore the permissions, but I ended up changing the UID on my Ubuntu account to match my OSX account:
Enter new password. Log out, log in as "other" with username "tempuser" and the password you chose earlier. Open a terminal and type:
*change "yourusername" to your non-temporary user name and 501 to the UID of your Mac account (first Mac account starts at 501, but subsequent users will have different UIDs).
Log out of tempuser and log back into your normal account (this is important; don't just switch users--bad things happen). Open a terminal window and type:
For more details, visit this page.
Caveats
rwx------
).UID_MIN
option in/etc/login.def
from1000
to500
.sudo
.The documentation for the linux kernel implementation of the HFS+ filesystem lists a
uid
mount option that allows you to "own" all files (and maybe some other options that might be useful too).I know this is old, but there is another way around it that seems to work just fine for me. Since all of the files were owned by a "root" user, all I did was issue
su root
from the terminal andls -lah /media/Macintosh HD
from there. By using root, I was able to bypass the permission denied error.This is general option I am using works perfectly
I was able to get access to files from an old Macbook hard drive by running the file manager with elevated privileges.
Then copy files as needed.