Fork me on GitHub

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

查看硬盘状态

diskutil info /Volumes/秋雨

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

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

解决方案

#查看挂载的磁盘
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命令
image

安装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
posted @ 2023-12-17 15:57  秋夜雨巷  阅读(64)  评论(0编辑  收藏  举报