Debian

如何獲取 qemu .cow2 實際文件大小

  • November 14, 2021

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 中磁碟的大小。

引用自:https://unix.stackexchange.com/questions/677513