It's probably mounted as ro then, you'll need to mount -o rw or mount -o remount,rw
Yeah, that's what I've got to figure out when I have time to pay some actual attention to what I'm doing. :-D
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.
(post is archived)