mount hfsplus (mac os file system) under Debian linux

Have an external hard disk with hfsplus or hfs+ partition on it? This is how you can mount it under linux (specifically, Debian) :

in os x :

  • disable journaling in the partition/external hdd in disk utility or use run the command “diskutil disableJournal /dev/disk1s1″ in terminal.

in linux :

  • apt-get install hfs*
  • mount -t hfsplus -o rw /dev/sdb1 /mnt/extdisk

Voila !!!

Related posts:

  1. Format Your External Hard Disk That Support Mac and Windows with Apple OSX If you have an external hard disk or thumb drive...
  2. Forget / forgot / cannot remember root password On a FreeBSD server 1. reboot server 2. choose to...
  3. PECL Manual Install on Linux Centos Just bought a VPS server hosting to play around from...
  4. Modify or Adjust File Date Time on Unix/Linux You have folders or files in your server last modified...
  5. How to Check Linux Version and Distro Who run more than 10 Linux servers with different version...
  6. iTerm, Screen & Linux is not playing well Problem : When connecting to Linux box and use screen...
  7. Downgrade package in Debian   For some reason, the recent Icedove (aka Thunderbird) version...
  8. Linux/Unix Search and Replace Text from Multiple Files In Linux/Unix, for newbie to do search text from multiple...
  9. FreeBSD 6.1 Performance Tuning Just a note for myself to tune FreeBSD OS for...
  10. Quick File Copy on File Name with Sample Extension By default, some of the application installation provide you a...

Leave a Reply