virt-install을 사용하여 4GB 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 문서를 실제로 이해하지 못하는 것 같습니다 ...