Skip to content

Instantly share code, notes, and snippets.

@takeit
Last active March 23, 2024 19:03
Show Gist options
  • Star 56 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save takeit/9fa83840f3b2065e204dc9d52cef3693 to your computer and use it in GitHub Desktop.
Save takeit/9fa83840f3b2065e204dc9d52cef3693 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"
@fufuceng
Copy link

Thanks! It works like a charm!

@luisalcarasr
Copy link

You helped me, so thank you.

@RomanKurbanov
Copy link

I cannot thank you enough, dear sir!

@darelover
Copy link

darelover commented Apr 18, 2021

Since homebrew has decided to disable fuse related formulae, I am thinking of maintaining this tap for people who still want to use to get ntfs-3g using homebrew. Install it using: brew install darelover/ntfs-3g/ntfs-3g

@BobbyRaduloff
Copy link

brew install darelover/ntfs-3g/ntfs-3g

God bless you my man, you just saved my day!

@allansrc
Copy link

allansrc commented May 3, 2021

brew install darelover/ntfs-3g/ntfs-3g

Great!

@ralevg
Copy link

ralevg commented May 21, 2021

I have installed ntfs-3g through brew install darelover/ntfs-3g/ntfs-3g.
(Please help... how to enable for RW NTFS operations on macOS Big Sur 11.2.3)

Thanks in advance

PS
I realised that ntfs-3g needs to install "osxfuse"... I installed and worked perfectly....
Thanks a lot!

Copy link

ghost commented May 28, 2021

brew install darelover/ntfs-3g/ntfs-3g

Thank you!

@skorotkiewicz
Copy link

skorotkiewicz commented Jun 2, 2021

brew install darelover/ntfs-3g/ntfs-3g

@darelover: Thank you very much!

Works on Big Sur 11.3.1

Copy link

ghost commented Jun 9, 2021

Would this work on macOS Big Sur? I just need to be able to copy and paste from and to a NTFS drive... Thanks!

@boris-kloris
Copy link

boris-kloris commented Jun 24, 2021

You might also need to follow these instructions. In my case, I was able to access the NTFS drive through the Terminal but not through the Finder. This fixed it. Also, osxfuse has been succeeded by macFUSE now, so download the latest version of macFUSE instead.

@Nat-the-Chicken
Copy link

Unfortunately even after installing macFUSE, it won't allow me to install through darelover's tap because it says I'm missing a dependency called "pkg-config". Is this because I'm using MacOS 10.12 and it's not supported? Is there any way for me to get the dependency?

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