Forked from bjorgvino/yosemite ntfs read+write.txt
Last active
September 19, 2015 13:31
-
-
Save jacyzon/ad2adc23c9889e83b019 to your computer and use it in GitHub Desktop.
osxfuse + ntfs-3g + Yosemite = NTFS R/W
This file contains 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
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 | |
# or via brew cask | |
# installs Homebrew Cask | |
brew install caskroom/cask/brew-cask | |
brew cask install osxfuse | |
Reboot (optional but recommended by osxfuse) | |
Install ntfs-3g via homebrew: | |
> brew update && brew install homebrew/fuse/ntfs-3g | |
Link mount_ntfs: | |
> sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original | |
> sudo ln -s /usr/local/Cellar/ntfs-3g/{version}/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/{version}/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