查看硬盘状态

diskutil info /Volumes/秋雨

mac系统使用NTFS移动硬盘只读问题_微信公众号


mount命令也能看出磁盘挂载位置

mac系统使用NTFS移动硬盘只读问题_3G_02

尝试使用makedir命令新建文件夹,提示只读

mac系统使用NTFS移动硬盘只读问题_3g_03

解决方案

#查看挂载的磁盘
mount
#卸载挂载的磁盘
sudo umount /dev/disk4s1

#以读写模式重新挂载:
#新建一个目录
$ mkdir ~/flashdisk
#使用mount_ntfs命令挂载
sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk1s1 ~/flashdisk
sudo mount_ntfs -o rw,nobrowse /dev/disk1s1 ~/flashdisk

失败: 因为没有mount_ntfs命令

mac系统使用NTFS移动硬盘只读问题_微信公众号_04

安装NTFS-3G

#安装 FUSE for macOS
brew install --cask macfuse
#安装 NTFS-3G
brew tap gromgit/homebrew-fuse
brew install ntfs-3g-mac

#执行命令不报错了,但是依然无反应
sudo mount_ntfs -o rw,nobrowse /dev/disk1s1 ~/flashdisk

如果这篇文章对你有用,可以关注本人微信公众号获取更多ヽ(^ω^)ノ ~

mac系统使用NTFS移动硬盘只读问题_3G_05