美文网首页
Make NTFS Disk Read&Write On Mac

Make NTFS Disk Read&Write On Mac

作者: 凌杰991 | 来源:发表于2019-10-05 11:14 被阅读0次

Get DiskName value

$ diskutil list

Tip: DiskName is presented by the NAME field

Create fstab file if there is no such file in the root of etc directory

$ sudo touch /etc/fstab
$ sudo vim /etc/fstab

Edit fstab file

LABEL=${DiskName} none ntfs rw,auto,nobrowse

Create shortcut to desktop

$ sudo ln -s /Volumes/${DiskName} ~/Desktop/${DiskName}

Drag the shortcut and make it fixed to Finder siderbar

Hide your desktop shortcut

$ cd ~/Desktop
$ mv ${DiskName} .${DiskName}

相关文章

网友评论

      本文标题:Make NTFS Disk Read&Write On Mac

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