Last active
March 21, 2018 23:49
-
-
Save pedrouid/4b12c67ea501d178749b0b16216628f2 to your computer and use it in GitHub Desktop.
Setting up NTFS 3G on Mac OS Sierra
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
// 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