Supported image file formats:
raw
Raw disk image format (default). This format has the advantage of being simple and easily exportable to all other emulators. If your file system supports holes (for example in ext2 or ext3 on Linux or NTFS on Windows), then only the written sectors will reserve space. Use "qemu-img info" to know the real size used by the image or "ls -ls" on Unix/Linux.
가장 기본이 되는 포맷형식으로 모든 에뮬레이터로 쉽게 내보낼수있는 장점이 있다.
만약 파일시스템이 리눅스 ext2, ext3 혹은 윈도우 NTFS 파일시스템을 지원하고 있다면 기록된 섹터공간을 미리 예약해둔다.
qemu-img info 명령어를 통해서 사용되는 실제크기를 알수있다.
qcow2
QEMU image format, the most versatile format. Use it to have smaller images (useful if your filesystem does not supports holes, for example on Windows), optional AES encryption, zlib based compression and support of multiple VM snapshots.
qcow는 QEMU가 지원하는 가상 디스크의 이미지 포맷 중 하나로 가장 다양하게 사용할수 있다.
Copy-on-Write를 지원하기 때문에 디스크 이미지의 크기는 디스크를 표현하는 물리 파일 디스크와 크기가 같을 필요가 없고, 디스크 이미지의 사용량에 따라 그 크기가 결정된다.
Zlib 기반의 압축방식을 사용하며, 디스크의 상태를 기록하는 스냅샷 등의 기능을 제공하는등 베이스이미지에 스냅샷, 압축, 암호등의 특징을 제공한다.
qemu-img라는 디스크 생성 유틸리티를 통해 qcow 포맷의 디스크 이미지를 생성하여 사용 할수 있다
Supported options:
"backing_file"
File name of a base image (see create subcommand)
"backing_fmt"
Image format of the base image
"encryption"
If this option is set to "on", the image is encrypted.
Encryption uses the AES format which is very secure (128 bit keys). Use a long password (16 characters) to get maximum protection.
"cluster_size"
Changes the qcow2 cluster size (must be between 512 and 2M). Smaller cluster sizes can improve the image file size whereas larger cluster sizes generally provide better performance.
"preallocation"
Preallocation mode (allowed values: off, metadata). An image with preallocated metadata is initially larger but can improve performance when the image needs to grow.
qcow
Old QEMU image format. Left for compatibility.
Supported options:
"backing_file"
File name of a base image (see create subcommand)
"encryption"
If this option is set to "on", the image is encrypted.
cow User Mode Linux Copy On Write image format. Used to be the only growable image format in QEMU. It is supported only for compatibility with previous versions. It does not work on win32.
이전버전하고의 호환성을 위해서 지원된다.
vdi
VirtualBox 1.1 compatible image format.
vmdk
VMware 3 and 4 compatible image format.
Supported options:
"backing_fmt"
Image format of the base image
"compat6"
Create a VMDK version 6 image (instead of version 4)
vpc
VirtualPC compatible image format (VHD).
cloop
Linux Compressed Loop image, useful only to reuse directly compressed CD-ROM images present for example in the Knoppix CD-ROMs.
리눅스 압축 loog 이미지로 CD-ROM 이미지를 직접 재사용할수 있다.