/sbin/mount.vboxsf: mounting failed with the error: Protocol

转自:http://apps.hi.baidu.com/share/detail/32228587

 这个问题发生在用virtualbox装虚拟机后:
当时的情况是这样的:虚拟机内的ubuntu要访问linux主机下的共享目录时,在虚拟机ubuntu内的terminal用mount挂载这个共享目录比如说xyz.

错误方法:
sudo mount -t vboxsf 192.168.1.2:/home/XXX/xyz /mnt/hgfs/share

然后报如题的错误:/sbin/mount.vboxsf:mounting failed with the error:protocol

解决办法:
sudo mount -t vboxsf xyz /mnt/hgfs/share

原因是在虚拟机共享目录设置时已经指定了这个文件,所以挂载时只要指定其目录名即可。

你可能感兴趣的:(虚拟机,ubuntu,terminal,linux)