kvm存储池中分配卷是什么意思?

kvm存储池中分配卷是什么意思?

我试图使用 virt-install 部署 4GB 虚拟机,我已将 /var/lib/libvirt/images 符号链接到随机目录 /kvmstore 作为我的池,并得到以下信息:

virt-install --network bridge:virbr0 --name $1 --os-variant=$2 --ram=1024 --vcpus=1 --disk path=/kvmstore/$1.img,size=4 --graphics none --location=$3 --extra-args="console=tty0 console=ttyS0,115200"

The requested volume capacity will exceed the available pool space when the volume is fully allocated. (4096 M requested capacity > 3470 M available)

所以我使用 virsh pool-info kvmstore 检查该池中有什么,结果出来了

Capacity:       16.40 GiB
Allocation:     13.01 GiB
Available:      3.39 GiB

这个分配卷到底指的是什么?它为什么存在,为什么占用这么多空间?我似乎无法真正理解 libvirt 文档......

相关内容