使用 MAC 写移动硬盘的时候会出现 Read-only file system,我们可以使用下面方法来解决。
iteblog: iteblog $ diskutil info /Volumes/Seagate\ Backup\ Plus\ Drive/ Device Identifier: disk2s1 Device Node: /dev/disk2s1
记下上面的 Device Node。然后使用下面命令弹出我们插入的移动硬盘:
iteblog: iteblog $ hdiutil eject /Volumes/Seagate\ Backup\ Plus\ Drive/ "disk2" unmounted. "disk2" ejected.
创建一个目录,稍后将 mount 到这个目录
iteblog: iteblog $ sudo mkdir /Volumes/iteblog Password:
将 NTFS 移动硬盘 挂载到上面的那个目录下面:
iteblog: iteblog $ sudo mount_ntfs -o rw,nobrowse /dev/disk2s1 /Volumes/iteblog/
完成上面操作之后,我们就可以通过移动硬盘往移动硬盘上写数据了。
本博客文章除特别声明,全部都是原创!原创文章版权归过往记忆大数据(过往记忆)所有,未经许可不得转载。
本文链接: 【解决 Mac 挂载 NTFS 移动硬盘进行读写操作(Read-only file system)】(https://www.iteblog.com/archives/9881.html)