Skip to content

Instantly share code, notes, and snippets.

@mondaini
Last active December 17, 2015 00:09
Show Gist options
  • Save mondaini/5518359 to your computer and use it in GitHub Desktop.
Save mondaini/5518359 to your computer and use it in GitHub Desktop.
Provide NTFS writing on OSX Lion / Mountain Lion

Tested under Mountain Lion 10.8.2 / Lion 10.7.5 :

  1. Install brew

  2. Open a terminal and execute: sudo su -

  3. Install fuse4x: brew install fuse4x

  4. Install ntfs-3g: brew install ntfs-3g

  5. Execute /bin/cp -rfX /usr/local/Cellar/fuse4x-kext/0.9.2/Library/Extensions/fuse4x.kext /Library/Extensions

  6. Then: chmod +s /Library/Extensions/fuse4x.kext/Support/load_fuse4x

  7. Replace the default binary to mount the NTFS File System

7.1. Rename the original binary: mv /sbin/mount_ntfs /sbin/mount_ntfs.orig

7.2. Create a link to the new binary: ln -s /usr/local/Cellar/ntfs-3g/2012.1.15/sbin/mount_ntfs /sbin/mount_ntfs

Source: http://forums.macrumors.com/showpost.php?p=16848872&postcount=35

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment