Mount it like you did before and then just issue a "sudo mount" command. That should list all mounted partitions and their status.
Mount it like you did before and then just issue a "sudo mount" command.
All I did was connect it to my laptop with a USB adapter.
I forgot Ubuntu tries to mount things automatically. Connect it, open a command window and do sudo mount. You should get something like the image (that's from a SBC, so it won't be exactly the same.)
Look at the first parameter in parenthesis. Here, it says rw, for read-write. I suspect your drive may have ro in there instead. If that's the case, you'll need to so something like:
sudo mount -o rw /mnt/the_actual_drive /mnt/where_you_want_it
If it says it's busy you may have to umount -f /mnt/drive and try again or use -o rw,remount.
Warning: This shouldn't damage anything on the drive, but there's always a risk with HFS because Apple.
but there's always a risk with HFS because Apple.
Which is why I am being careful. And thanks for the tip, of course!
Yep. "ro" it is.
/dev/sda2 on /media/bernardo/Macintosh HD type hfsplus (ro,nosuid,nodev,relatime,umask=22,uid=1000,gid=1000,nls=utf8,uhelper=udisks2)
When you say "the_actual_drive" do you mean "/dev/sda2" or something else?
(post is archived)