ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew install caskroom/cask/brew-cask
brew cask install osxfuse
brew install homebrew/fuse/ntfs-3g
sudo nvram boot-args="rootless=0"
And reboot.
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original
sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs
Based on: http://apple.stackexchange.com/questions/152661/write-to-ntfs-formated-drives-on-yosemite
@mforce This is not a bug in osxfuse 2.x. Replacing
/sbin/mount_ntfs
with/usr/local/sbin/mount_ntfs
is basically a hack. If the NTFS-3G version ofmount_ntfs
was written properly there would be no issues with osxfuse 2.x. After all this is a NTFS-3G issue. In osxfuse 3.x the whole mount process has changed and works around NTFS-3G's shortcomings.