Created
April 23, 2012 19:23
-
-
Save fallwith/2473228 to your computer and use it in GitHub Desktop.
Enable write support for NTFS flash drives in OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$> brew install ntfs-3g | |
# The exact syntax for the following commands for your system will be available in the "Caveats" section of the documentation if you run "brew info ntfs-3g" | |
$> sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig | |
$> sudo ln -s /usr/local/Cellar/ntfs-3g/2012.1.15/sbin/mount_ntfs /sbin/mount_ntfs | |
# The exact syntax for the following commands for your system will be available in the "Caveats" section of the documentation if you run "brew info fuse4x-kext" | |
$> sudo cp -rfX /usr/local/Cellar/fuse4x-kext/0.10.0/Library/Extensions/fuse4x.kext /Library/Extensions | |
$> sudo chmod +s /Library/Extensions/fuse4x.kext/Support/load_fuse4x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment