Skip to content

Instantly share code, notes, and snippets.

@wajatimur
Forked from takeit/INSTALL.md
Created June 1, 2018 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wajatimur/a4f489de1670def5bcf43dc12421f4dd to your computer and use it in GitHub Desktop.
Save wajatimur/a4f489de1670def5bcf43dc12421f4dd to your computer and use it in GitHub Desktop.
Write to NTFS on macOS Sierra (osxfuse + ntfs-3g)
  1. Install osxfuse:
brew cask install osxfuse
  1. Reboot your Mac.

  2. Install ntfs-3g:

brew install ntfs-3g

Note: if it will be still yelling that osxfuse is required even if you already installed it, try to reinstall it by running command: brew cask reinstall osxfuse.

  1. Disable System Integrity Protection (SIP):

Reboot your Mac and press (or hold) Command + R, then from the top menu from Tools open Terminal and run command:

csrutil disable
  1. Replace Apple's NTFS mount tool with the one provided by ntfs-3g:
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.orig
sudo ln -s /usr/local/sbin/mount_ntfs  "/Volumes/Macintosh HD/sbin/mount_ntfs"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment