Skip to content

Instantly share code, notes, and snippets.

@mattlong
Forked from bjorgvino/yosemite ntfs read+write.txt
Last active August 29, 2015 14:23
Show Gist options
  • Save mattlong/90295f6cc1482d4b2164 to your computer and use it in GitHub Desktop.
Save mattlong/90295f6cc1482d4b2164 to your computer and use it in GitHub Desktop.
Remove osxfuse if installed via homebrew:
> brew uninstall osxfuse
Install osxfuse binary and choose to install the MacFUSE compatibility layer:
http://sourceforge.net/projects/osxfuse/files/latest/download?source=files
Reboot (optional but recommended by osxfuse)
Install ntfs-3g via homebrew:
> brew update && brew install ntfs-3g
Link mount_ntfs:
> sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original
> sudo ln -s /usr/local/Cellar/ntfs-3g/2014.2.15/sbin/mount_ntfs /sbin/mount_ntfs
The output of the following should be as below:
> ls -l /sbin/mount_ntfs*
/sbin/mount_ntfs -> /usr/local/Cellar/ntfs-3g/2014.2.15/sbin/mount_ntfs
/sbin/mount_ntfs.original -> /System/Library/Filesystems/ntfs.fs/Contents/Resources/mount_ntfs
Reboot and voila
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment