因为版权原因,MAC 在新系统中把NTFS格式移动硬盘的写功能去掉了。
使用以下方法,可以让MAC 正常使用NTFS格式移动硬盘。如果问题可发贴问我。
MAC上安装Fuse for macOS以支持读取NTFS格式的移动硬盘
以下是教程的内容
第一步:1安装FUSE FOR MAC 最新版本
上面是官网地址,下载完成后,要勾选所有项目.然后一路安装即可.
第二步:安装homebrew包管理器
打开终端,执行以下命令
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
按照提示正常安装即可.
第三步:使用homebrew安装ntfs-3g
执行如下命令:
brew install ntfs-3g
安装 NTFS-3G 之后。执行以下命令:
sudo mkdir /Volumes/NTFS
sudo /usr/local/bin//usr/local/sbin/mount_ntfs/dev/disk1s1 /Volumes/NTFS -olocal -oallow_other
下面是原文说明。
If volume is APFS, then it will need to be unlocked to install mount_ntfs. Let's assume that Macintosh HD is identified as disk1s1.
必须确保 Macintosh HD是第一只硬盘
diskutil list
diskutil apfs unlockVolume disk1s1
临时关闭SIP
重启计算机时 按住 Command (⌘)-R 进入 recovery 模式。
上方菜单,实用工具中,打开终端
输入:
csrutil disable
重启计算机
打开终端输入
sudo mount -uw /
重新挂载硬盘
第四步:将ntfs-3g驱动程序作为macOS的默认挂载驱动.
如果你的硬盘是Macintosh HD 如果不是请更换Macintosh HD
输入
sudo mv "/Volumes/Macintosh HD/sbin/mount_ntfs" "/Volumes/Macintosh HD/sbin/mount_ntfs.orig"
sudo ln -s /usr/local/sbin/mount_ntfs "/Volumes/Macintosh HD/sbin/mount_ntfs"
最后:重启计算机之后就可以,正常使用NTFS硬盘了。