level 13
很多人通过购买第三方软件实现ntfs的读写,但是其实并不需要,macOS本身就可以方便地读写ntfs硬盘
2023年07月12日 08点07分
1
level 13
我们知道Linux在mount时可以通过加-t参数以使用不同的文件系统。同理,Mac也可以,只是命令略有不同
2023年07月12日 08点07分
2
level 13
本人参考了以下内容:https://www.jianshu.com/p/5237811f0ed3
2023年07月12日 08点07分
3
还有这篇:https://zhuanlan.zhihu.com/p/558705589
2023年07月12日 08点07分
level 13
首先,macOS在你插入硬盘时默认会mount,但不是我们想要的mount方式,我们要umount硬盘。具体操作如下:1、terminal里面输入mount | grep ntfs,查看已经mount的硬盘。会输出/dev/diskXXX(sdbXXX)。2、输入umount /dev/diskXXX,卸载硬盘
2023年07月12日 08点07分
4
level 13
接下来的操作对于macOS13以后和以前的系统不同。
2023年07月12日 08点07分
5
level 13
对于macOS13以前的:在你喜欢的地方创建一个文件夹,mount_ntfs -o rw,nobrowse /dev/diskXXX /XXX/XXX(你创建的文件夹的目录),接下来你就可以在创建的文件夹里面看到硬盘内容了
2023年07月12日 08点07分
6
level 13
对于macOS13及以后的:1、安装homebrew包管理器,网上很多教程。2、brew tap gromgit/homebrew-fuse。3、brew install --cask macfuse。4、brew install --force ntfs-3g-mac。5、创建文件夹。6、sudo /usr/local/sbin/mount_ntfs /dev/diskXXX /XXX/XXX(创建的文件夹的位置)。接下来就可以使用了。
2023年07月12日 08点07分
7
level 13
操作中如果提示权限不够就加sudo。如果无法删除硬盘里面的文件就用rm删除
2023年07月12日 08点07分
8
level 13
如果你嫌麻烦,就做一个shell脚本,一键执行以上操作。
2023年07月12日 08点07分
9
level 13
我合理怀疑,那些收费软件就是把这些东西套了一个gui
2023年07月12日 08点07分
10
本来就是啊
2023年07月12日 09点07分