virtio 文件系统安装为只读 - 为什么?

virtio 文件系统安装为只读 - 为什么?

在来宾上,我安装了主机的目录,如下所示:

# mount -t 9p -o trans=virtio /sharepoint /share

事实上,文件系统似乎是读/写的:

# mount
...
/sharepoint on /share type 9p (rw,relatime,sync,dirsync,access=client,trans=virtio)
                               ^^

/sharepoint配置如下:

Type: mount
Driver: Path
Mode: Mapped
Write Policy: Immediate
Source Path: /path/to/source/on/host
Target Path: /sharepoint

源路径的权限是777.

/share然而,当我尝试在来宾中写入时,出现以下错误:

root@guest:/share# touch .hello
touch: cannot touch '.hello': Read-only file system

无论我是 root 用户还是来宾上的普通用户,结果都是一样的。

我已经尝试重新启动虚拟机,在更改主机路径上的权限后,情况没有改变。

问题:知道可能出什么问题吗?或者我应该检查什么?

相关内容