I know what your thinking: this question has been asked 100 times before, so why doesn't he just look it up? Well, I did, following this link: AskUbuntu: how to read and write hfs journaled external hdd in ubuntu without access to os
The crux of which is to
- install hfsprogs (done) and
sudo mount -t hfsplus -o force,rw /dev/sdd2 /media/legomaniac/Apple
It worked.
My son has come from university for this (Canadian) Thanksgiving weekend and I asked him to bring is 3TB backup drive so I could back up my own drive in preparation for re-building my computer (it was intermittently failing to re-start - turned out to be a failing (and now dead) power supply). I did the above, copied by user profile over to it and all appeared well. In the end, the backup wasn't really necessary as all the SSDs in my computer survived the re-build, but I was just being cautions while I had the machine running.
So now that the computer has been repaired and my files have survived, all I need to do is re-mount the Apple backup drive and shred my financial records, email databases, etc. and then delete the folders.
Of course, now the Apple drive will only mount as Read-Only.
You'll note from the original command the the partition was originally sdd2. To avoid any mishaps, I've removed the other SSDs from my computer leaving me with just my LUbuntu installation and the apple drive:
$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 232.9G 0 disk
└─sda1 8:1 0 232.9G 0 part /
sdb 8:16 0 2.7T 0 disk
├─sdb1 8:17 0 200M 0 part
├─sdb2 8:18 0 2.7T 0 part
└─sdb3 8:19 0 619.9M 0 part
So, now I'm trying to mount sdb2:
sudo mount -t hfsplus -o force,rw /dev/sdb2 /media/legomaniac/Apple
...which ignores the -o force,rw
option and mounts it read-only but doesn't provide any error messages or warnings or explanations about WHY it's ignoring my command. What makes it even more infuriating is the inconsistancy: it's behaving two different ways to exactly the same command. Granted, it was sdd2 the first time but I can't see how that would matter.
So if I can't solve this by Monday, I'm stuck with either buying another 3TB external drive for my son or letting all my financial records walk around a University campus until Christmas.
mount
command without any arguments (or the contents of/etc/mtab
) or are you basing it on being unable to write to the device? If the latter, how are you attempting to do so? – steeldriver Oct 12 '19 at 18:43dmesg
? – fkraiem Oct 12 '19 at 19:22