God dammit! I asked you to check if your Mac volume was mounted as read/write! lol
You have to unmount and remount it with write enabled.
I know, and that's where I'm struggling right now.
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.
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.
(post is archived)