MAC OS 10.15 挂载ntfs文件系统并设置自动挂载RW模式.
解决方案
- 花钱的,省心的 https://www.paragon-software.com/home/ntfs-mac/
- 免费的 开源的 https://github.com/osxfuse/osxfuse
下载安装: osxfuse-3.10.3.dmg https://github.com/osxfuse/osxfuse/releases/download/osxfuse-3.10.3/osxfuse-3.10.3.dmg
免费的 开源的 方法
- 安装 ntfs-3g
brew install ntfs-3g
# 如果之前没安装brew
现在要先安装/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
然后在执行brew install ntfs-3g
- 手动挂载方式
到此你可以手动挂载ntfs文件系统的分区了并可以对ntfs文件系统进行读写操作.sudo mkdir /Volumes/NTFS
#建立挂载目录sudo /usr/local/bin/ntfs-3g /dev/disk1s1 /Volumes/NTFS -olocal -oallow_other
#开始挂载 - 设置自动挂载方式
如果你想让系统自动挂载,你要多做一些事情
关闭sip 系统完整性保护 功能.
你要进入recover 模式,在命令行中输入csrutil disable
重新启动macos ,进入系统后 解锁根分区 .使之可以被读写 命令:sudo mount -uw /
- 替换掉系统的
/sbin/mount_ntfs
为我们的 ntfs-3g/usr/local/sbin/mount_ntfs
- 先备份
sudo mv "/Volumes/你的macOS系统所有分区名称/sbin/mount_ntfs" "/Volumes/你的macOS系统所有分区名称/sbin/mount_ntfs.orig"
- 建立软连接
sudo ln -s /usr/local/sbin/mount_ntfs "/Volumes/你的macOS系统所有分区名称/sbin/mount_ntfs"
- 先备份
开启sip [可选]
csrutil enable
参考:
https://brew.sh/
https://github.com/osxfuse/osxfuse/wiki/NTFS-3G
https://github.com/osxfuse/osxfuse/releases
相关推荐
88236637 2020-06-25
Charliewolf 2020-05-01
TinyDolphin 2019-12-31
wyzxzws 2019-12-29
luther 2013-08-22
hbcbgcx 2015-01-22
liweihui 2015-06-13
拿什么来拯救自己 2008-07-13
Tonywei0 2009-09-13
jiangtie 2019-10-26
梦想天空分外蓝 2008-10-16
quanhaoH 2019-10-08
xingzhegu 2015-01-22
hagetis 2014-12-13
KINGJENSEN 2014-10-21
cuixingwudi 2014-02-25
86296939 2017-07-05
jinkun00 2012-12-30