Skip to content

Instantly share code, notes, and snippets.

@pedrouid
Last active March 21, 2018 23:49
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 pedrouid/4b12c67ea501d178749b0b16216628f2 to your computer and use it in GitHub Desktop.
Save pedrouid/4b12c67ea501d178749b0b16216628f2 to your computer and use it in GitHub Desktop.
Setting up NTFS 3G on Mac OS Sierra
// Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
// Check if Homebrew Cask extension is installed
brew cask
(if not installed ===> brew install caskroom/cask/brew-cask)
// Install OSX Fuse
brew cask install osxfuse
// Install NTFS-3G
brew install ntfs-3g
// Restart in Recovery Mode (hold CMD + R)
// and disable System Integrity Protection
csrutil disable
// Restart in Normal Mode and verify it's disabled
csrutil status
// Replace NTFS drivers
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original
sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs
// Restart in Recovery Mode (again... CMD + R)
// and re-enable System Integrity Protection
csrutil enable
// DONE!! (you can now restart in Normal Mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment