转自:https://blog.csdn.net/u014443884/article/details/78687490
ntfs的移动硬盘默认可以识别但是以only read的方式挂载的,需要读写的时候肯能无法使用 mac自带的mount_ntfs就可以挂载移动硬盘,默认挂载的时候ntfs的硬盘是只读的,所以这个时候需要先umount掉,然后再使用mount_ntfs命令以读写的方式挂载
1.首先查看本地已经挂载的ntfs硬盘:
mount | grep ntfs
结果如下:
clive@cliveyuans-MacBook-Pro:~$ mount | grep ntfs
/dev/disk0s3 on /Volumes/BOOTCAMP (ntfs, local, read-only, noowners)
/dev/disk3s1 on /Volumes/系统保留 (ntfs, local, nodev, nosuid, read-only, noowners)
/dev/disk3s2 on /Volumes/clive-2 (ntfs, local, nodev, nosuid, read-only, noowners)
2.然后卸载该硬盘:
umount /dev/disk3s2
3.本地创建一个挂载目录,然后使用mount_ntfs再次挂载:
mkdir mnt
mount_ntfs -o rw,nobrowse /dev/disk3s2 mnt
如果上述方法没用, 那么可以下载这个软件试试 NTFS For Mac
本文由 Clive 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为:
2018/12/19 21:59