Mac OS上免费的NTFS驱动

Mac NTFS Free

Mac OS下,使用NTFS的磁盘,是一件很痛苦的事情
默认系统是只读,并不支持修改操作

市面上常见的2个商用产品是:Paragon NTFS 和 Tuxera NTFS

前一款外观精美,是非常推荐的,然而价格动不动就要149
后者,据说就是依赖开源的NTFS-3G而来

接下来,让我们用几条命令,来搞定免费的NTFS驱动

1. install brew

如果是Mac老用户,这一步应该都可以跳过了吧

1
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2. csrutil disable

这一步也不是很复杂,按着cmd+R,进行重启,进入终端,敲命令而已

  • reboot with cmd+R
  • use terminal run ‘csrutil disable’

3. install fuse and ntfs-3g

操作即可

1
2
brew cask install osxfuse
brew install ntfs-3g

4. replace the default ntfs auto load tool

替代Mac OS原生的NTFS驱动,就是上面提到的,只提供NTFS读操作的功能

1
2
sudo mv /sbin/mount_ntfs /sbin/mount_ntfs.original
sudo ln -s /usr/local/sbin/mount_ntfs /sbin/mount_ntfs

5. reboot

6. done

Reference

https://medium.com/@technikhil/setting-up-ntfs-3g-on-your-mac-os-sierra-11eff1749898

Update

  • 发现一个严重的问题,在USB3.0下,速度严重被限制,原来,官方有说明:

热评文章