Debian
如何獲取 qemu .cow2 實際文件大小
qcow2 磁碟映像可以隨著數據的添加而增長。這允許較小的文件大小,這很好,但是如何獲得文件系統的實際大小以便在將磁碟添加到虛擬機時定義磁碟大小?
您可以
qemu-img info
為此使用:$ qemu-img info fedora33.qcow2 image: fedora33.qcow2 file format: qcow2 virtual size: 30 GiB (32212254720 bytes) disk size: 15.1 GiB cluster_size: 65536 Format specific information: compat: 1.1 compression type: zlib lazy refcounts: true refcount bits: 16 corrupt: false extended l2: false
其中
virtual size
顯示了 VM 中磁碟的大小。