6

I followed the directions here:

NTFS-3G via Homebrew installation

If you have [Homebrew][5], installing NTFS support is as easy as running the following in a terminal:

brew install ntfs-3g

Then, follow the instructions on the screen. Homebrew will tell you how to replace the default OS X automounter so external NTFS drives are mounted using the new driver. Those are a couple of commands you need to run through your terminal.

And it worked perfectly at first, but a couple days later now and when I insert a USB drive that worked before, it is mounting as read-only.

How can I get NTFS-3g working again? I tried reinstalling the homebrew, but it stated that it was already installed and did nothing. Should I uninstall and reinstall, if so, how do you uninstall a homebrew item?

WilliamKF
  • 8,058

1 Answers1

4

NTFS-3G asks you to replace /sbin/mount_ntfs with their own version. If it stops working, then probably is because an OS X update replaced that file.

To fix this, you must do the following:

  1. Rename the mount_ntfs command provided by OS X:

    sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original

  2. Make sure the mount_ntfs command provided by NTFS-3G is used:

    sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs

crcastle
  • 103
tvs
  • 156