2017-03-17 75 views
1

我的USB-光盘显示在Finder中(在OS X El Capitan 10.11.5下),并提供了我只能读取的信息。我也搜索了解决方案以获得写入访问权限,并且在建议格式化光盘的较高排名帖子后很高兴找到this little scipt。 不幸的是,在执行脚本时,它并不会达到预期效果:使用r/w在Mac上安装NTFS驱动器

sudo sh -c "mkdir -p /mnt \ 
$(mount | grep ntfs | head -n 1 \ 
    | awk '{ print "&& umount " $3 \ 
       " && mount_ntfs -o nosuid,rw " $1 " /mnt" }')" 
Password: 
umount: /Volumes/Seagate: not currently mounted 

我是一个相当有MAC-的n00b,很遗憾,但我怀疑与空白驱动器的名称可能会导致这些问题。

mount 
/dev/disk0s2 on/(hfs, local, journaled) 
devfs on /dev (devfs, local, nobrowse) 
map -hosts on /net (autofs, nosuid, automounted, nobrowse) 
map auto_home on /home (autofs, automounted, nobrowse) 
/dev/disk3s2 on /Volumes/Seagate Expansion Drive (ntfs, local, nodev, nosuid, read-only, noowners) 

但作为一个真正的n00b,我没有尝试修复引用驱动器名称的脚本。或者,也许我的假设是错误的。那么,我能做些什么来使这个运行?

回答