1. 程式人生 > >MAC下NTFS讀寫方案解決

MAC下NTFS讀寫方案解決

TE 不存在 volume finder des 分區 需要 span led

1 mount查看磁盤掛載情況

$ mount

2 卸載掛載

$ sudo umount /Volumes/Untitled/

3 重新掛載

$ sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk4s2 /Volumes/Udisk/

-t ntfs # 執行要掛載的分區文件系統格式

-o # 執行掛載的選項

rw # read-write,以讀寫的方式掛載

auto # 自動檢測文件系統,此參數可以省略

nobrowse # 這個選項非常重要,因為這選項指明了在finder裏不顯示這個分區,只有打開了這個選項才能將磁盤以讀寫的方式進行掛載

/dev/disk4s2 # 要掛載的分區,也就是我們在mount命令中看到的盤符

/Volumes/Udisk/ # 掛載點

註意:如果目錄不存在會收到如下報錯:mount: realpath /Volumes/Udisk: No such file or directory。

需要手動創建下:sudo mkdir /Volumes/Udisk。

4 確認掛載

$ mount|grep ntfs

5 創建軟鏈接

$ sudo ln -s /Volumes/Udisk/ ~/Desktop/Udisk

MAC下NTFS讀寫方案解決