美文网首页
macOS Monterey 读写 NTFS U盘

macOS Monterey 读写 NTFS U盘

作者: 十月末的故事 | 来源:发表于2021-12-12 06:50 被阅读0次

电脑:Macbook Pro 2021(M1 Pro)
系统:macOS Monterey

问题: NTFS 格式的 u 盘只能读取,不能写入
解决方式:

  1. 使用命令查看所有连接的 u 盘, 找到自己的 u 盘标识,后面的命令需要。我这里是 disk4s1
diskutil list
image.png
  1. 卸载 u 盘
diskutil unmount disk4s1
  1. 执行以下命令
sudo mkdir /Volumes/disk4s1
sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk4s1 /Volumes/disk4s1
  1. 打开 u 盘,就可以读写了。
open /Volumes/disk4s1/



缺点:每次连接都需要操作一遍。

相关文章

网友评论

      本文标题:macOS Monterey 读写 NTFS U盘

      本文链接:https://www.haomeiwen.com/subject/hltrfrtx.html