如题。
之前我使用NFS,NFS会有同步问题。比如编译文件时候的时间同步问题,见前边的文章。
如今,我们使用高级的virtfs:
见:https://www.linux-kvm.org/page/9p_virtio
一: host上的设置,使用类似如下的参数:
13 -device virtio-9p-pci,id=fs0,fsdev=fsdev0,mount_tag=Tsrc 14 -fsdev local,security_model=passthrough,id=fsdev0,path=/root/Src
二: 在guest的设置,挂载:
大概是这样的,
# mkdir /tmp/host_files
# mount -t 9p -o trans=virtio,version=9p2000.L hostshare /tmp/host_files
CentOS7还不支持,所以我也没试出来。
[root@D129 ~]# cat /boot/config-3.10.0-327.el7.x86_64 |grep -i 9p # CONFIG_NET_9P is not set [root@D129 ~]#