VirtualBox "/sbin/mount.vboxsf: mounting failed with the error: Invalid argument"解決辦法

來源:互聯網
上載者:User

自己主機是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/shsudo umount -f /media/sf_sharesudo mount -t vboxsf -o "uid=kongxx,gid=kongxx,dmode=0755,fmode=0755" share /home/kongxx/share
此時應該就不會再出現上面的那個錯誤提示了。








聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.