Centos

VirtualBox:vboxsf 文件系統被錯誤地檢測為只讀?

  • December 5, 2011

我有執行CentOS 6.0虛擬機的VirtualBox (Windows XP 主機),帶有一個****共享文件夾

以下是已安裝設備的列表:

[root@localhost ~]# mount -l
...
www on /media/sf_www type vboxsf (gid=501,rw)

看起來它是讀/寫的。

現在,如果我嘗試在此共享文件夾上寫入:

[root@localhost ~]# touch /media/sf_www/test
touch: cannot touch `/media/sf_www/test': Read-only file system

知道我做錯了什麼嗎?

編輯:只是試圖在別處手動安裝它,同樣的問題:

[root@localhost ~]# mount.vboxsf -w www /mnt/www
[root@localhost ~]# mount -l
...
www on /media/sf_www type vboxsf (gid=501,rw)
www on /mnt/www type vboxsf (rw)
[root@localhost ~]# touch /mnt/www/test
touch: cannot touch `/mnt/www/test': Read-only file system

注意:該www文件夾在我的主機上是可寫的。

好的,我找到了解決方案。實際上,我在機器執行時將共享文件夾從只讀更改為“讀/寫”,然後重新啟動機器。

解決方案只是正確關閉機器,然後重新啟動。

引用自:https://serverfault.com/questions/337809