我是靠谱客的博主 典雅跳跳糖,最近开发中收集的这篇文章主要介绍VirtualBox "/sbin/mount.vboxsf: mounting failed with the error: Invalid argument"解决办法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

自己主机是Windows7,开始虚拟机是CentOS5x,在VirtualBox上设置了共享目录“share”之后,在虚拟机里使用命令

sudo mount -t vboxsf -o uid=<uid>,gid=<gid>,dmode=0755,fmode=0755 share /share就可以把共享目录mount到虚拟机系统上,但是今天装了个CentOS6之后,设置了同样的共享目录“share”之后,在运行以上命令总是出现以下错误

/sbin/mount.vboxsf: mounting failed with the error: Invalid argument好来发现是共享目录名(这里是“share”)不能和mount的最终挂载点名相同(这里是"/ share"),所以没办法,在VirtualBox的共享目录设置里把share换了一个别名“share123”,然后再运行命令

sudo mount -t vboxsf -o uid=<uid>,gid=<gid>,dmode=0755,fmode=0755 share123 /share目录挂载成功了,但是具体原因不明。


2011-09-11 更新

如果嫌每次要改太麻烦也可每次先运行一下umount,然后在mount那个目录,比如我windows共享的目录名叫share,在linux上使用mount查看,应该会有类似下面的行出现

... share on /media/sf_share type vboxsf (gid=1001,rw) ...此时,可以先umount那个/media/sf_share,忽略提示内容(不管什么错误提示),再运行mount命令,类似如下步骤

#!/bin/sh sudo umount -f /media/sf_share sudo mount -t vboxsf -o "uid=kongxx,gid=kongxx,dmode=0755,fmode=0755" share /home/kongxx/share 此时应该就不会再出现上面的那个错误提示了。








最后

以上就是典雅跳跳糖为你收集整理的VirtualBox "/sbin/mount.vboxsf: mounting failed with the error: Invalid argument"解决办法的全部内容,希望文章能够帮你解决VirtualBox "/sbin/mount.vboxsf: mounting failed with the error: Invalid argument"解决办法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部