Skip to content

Instantly share code, notes, and snippets.

@githubutilities
Last active June 26, 2024 09:42
Show Gist options
  • Save githubutilities/fa75d78346592c96ee23 to your computer and use it in GitHub Desktop.
Save githubutilities/fa75d78346592c96ee23 to your computer and use it in GitHub Desktop.
NTFS in Mac

NTFS in Mac

FUSE for OSX, for Mavericks and below

# install osxfuse
brew cask install osxfuse

# install ntfs-3g
brew tap homebrew/fuse
brew install ntfs-3g

# link the binary
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.bak 
sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs

For Yosemite and above

Just editing a file every time you mount a NTFS system.

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