Use the following command to find your USB disk mountpoint
mount -v | grep "/" | awk '{print "\nPartition identifier: " $1 "\n Mountpoint: " $3}'
Paste the results here and I'll give you the right command to remount it with write enabled.
Redacted: Partition identifier: /dev/sda2 Mountpoint: /media/bernardo/Macintosh
sudo umount /media/bernardo/Macintosh
sudo umount /dev/sda2
sudo mount -t hfsplus -o rw,remount -force /dev/sda2 /media/bernardo/Macintosh
Your disk should be writable and the previous chown should be working.
sudo umount /media/bernardo/Macintosh
Error: umount /media/bernardo/Macintosh no mount point specified.
sudo umount /dev/sda2
That worked. Ut's no longer there when I run ls -ls
sudo mount -t hfsplus -o rw,remount -force /dev/sda2 /media/bernardo/Macintosh
Nothing. Still not there when I run ls -ls
sudo mount -o remount,rw /dev/sda2 /media/bernardo/Macintosh
If you get an error paste it here.
(post is archived)