我正在尝试使用mount命令将工作中的计算机上的目录挂载到我的Windows计算机上。
在cygwin中,我尝试了几种变体:
mount machineName:/remote/location/blah /local/location
mount -t nfs machineName:/remote/location/blah /local/location
mount nfs machineName:/remote/location/blah /local/location
mount machineNAme:/remote/location/blah我已经尝试过了,调换了论点,等等……我要么得到这样的消息:mount: can't find brotula in /etc/fstab or in /etc/fstab.d/$USER,要么得到invalid arguments。我知道我有正确的路径,因为我使用scp很好。
我做错了什么?谢谢!
发布于 2012-06-02 02:54:50
根据man mount中的示例,您尝试过$ mount //machinename/remote/location/blah /local/location吗
https://stackoverflow.com/questions/10855758
复制相似问题