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. Downgrade package in Debian   For some reason, the recent Icedove (aka Thunderbird) version...
  7. FreeBSD 6.1 Performance Tuning Just a note for myself to tune FreeBSD OS for...
  8. iTerm, Screen & Linux is not playing well Problem : When connecting to Linux box and use screen...
  9. How to Find Out Public IP Address via Command Line in Unix/Linux Machine If you have more than 100 servers in your network;...
  10. Linux/Unix Search and Replace Text from Multiple Files In Linux/Unix, for newbie to do search text from multiple...

Leave a Reply