問題描述
在使用 qemu kvm 安裝 VM 之前更改 VM 的磁盤大小 (Changing Disk Size of VM before VM installation using qemu kvm)
我想更換磁盤安裝 vm 前最大 20G。圖像已經有 50G 的虛擬大小。
參考解法
方法 1:
First, You should consider trying to compress the disk size.
sudo qemu‑img ‑O qcow2 vmf5.img vmf5‑compact.qcow2
If you really need those disk spaces, what you need to do:
sudo qemu‑img resize /var/lib/libvirt/images/vmf5.img 20G
There is a document about qemu‑img
(by Minhaj Ahmed、William Mou)