QEMU 无法挂载 cifs 共享,但能够访问 cifs 共享上的文件

QEMU 无法挂载 cifs 共享,但能够访问 cifs 共享上的文件

我在 /var/lib/nasvirt 处安装了一个 cifs 共享文件系统,如下所示。

/mynas/vms on /var/lib/nasvirt type cifs (rw,relatime,vers=default,cache=strict,username=admin,domain=,uid=1000,forceuid,gid=0,noforcegid,addr=192.168.1.x,file_mode=0755,dir_mo de=0755,nounix,serverino,mapposix,rsize=1048576,wsize=1048576,echo_interval=60,actimeo=1)

我可以以 root 或我自己的身份导航到该目录,并创建和编辑文本文件。

但是,当我尝试在该位置创建 qemu 磁盘映像时,出现输入/输出失败和 0 字节文件。

root@host:~# qemu-img create -f qcow2 /var/lib/nasvirt/rtr2.cow 8G
Formatting '/var/lib/nasvirt/rtr2.cow', fmt=qcow2 size=8589934592 cluster_size=65536 lazy_refcounts=off refcount_bits=16
qemu-img: /var/lib/nasvirt/rtr2.cow: Could not write qcow2 header: Input/output error

在本地创建图像效果很好:

root@host:/# qemu-img create -f qcow2 /var/lib/libvirt/images/rtr2.cow 8G
Formatting '/var/lib/libvirt/images/rtr2.cow', fmt=qcow2 size=8589934592 cluster_size=65536 lazy_refcounts=off refcount_bits=16

相关内容