2
使用libvirt / qemu对直通(9p)文件系统进行读/写访问?
我最近开始尝试在KVM / QEMU / libvirt的最新版本中对直通文件系统的支持。使文件系统可用于读取访问已经“正常”,但是我对应该如何进行写入访问感到困惑。在客户机中挂载文件系统后: # mount -t 9p -o trans=virtio /fs/data /mnt 如果有模式,我可以修改现有文件o+w: # cd /mnt/work # ls -l foo -rw-rw-rw-. 1 root root 17 Dec 20 11:16 foo # cat foo this is line one # echo this is line two >> foo # cat foo this is …