virt-installを使用して4 GBのVMを展開しようとしています。 /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ドキュメントを実際に理解していないようです...