Skip to content

Instantly share code, notes, and snippets.

@nonohry
Created October 15, 2018 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nonohry/10ae04951eeaf6377b7bd3ab88dc7dc5 to your computer and use it in GitHub Desktop.
Save nonohry/10ae04951eeaf6377b7bd3ab88dc7dc5 to your computer and use it in GitHub Desktop.
Mount Read & Write HFS+ on Ubuntu
#These steps:
sudo apt install hfsprogs
#Check status of drive:
sudo fsck.hfsplus -f /dev/sdXY
#Unmount deivce:
sudo umount /media/nono/devicename
#Mount the drive with HFS+ read/write permissions:
sudo mount -t hfsplus -o force,rw /dev/sdXY /home/nono/foldername
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment