git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2100 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2006-08-07 21:34:34 +00:00
parent 90765429aa
commit 19d36792c0
2 changed files with 15 additions and 11 deletions

View File

@ -949,7 +949,7 @@ format. Normally this device is the first virtual hard drive.
Use the monitor command @code{savevm} to create a new VM snapshot or Use the monitor command @code{savevm} to create a new VM snapshot or
replace an existing one. A human readable name can be assigned to each replace an existing one. A human readable name can be assigned to each
snapshots in addition to its numerical ID. snapshot in addition to its numerical ID.
Use @code{loadvm} to restore a VM snapshot and @code{delvm} to remove Use @code{loadvm} to restore a VM snapshot and @code{delvm} to remove
a VM snapshot. @code{info snapshots} lists the available snapshots a VM snapshot. @code{info snapshots} lists the available snapshots
@ -972,8 +972,8 @@ and writable block device. The disk image snapshots are stored in
every disk image. The size of a snapshot in a disk image is difficult every disk image. The size of a snapshot in a disk image is difficult
to evaluate and is not shown by @code{info snapshots} because the to evaluate and is not shown by @code{info snapshots} because the
associated disk sectors are shared among all the snapshots to save associated disk sectors are shared among all the snapshots to save
disk space (otherwise each snapshot would have to copy the full disk disk space (otherwise each snapshot would need a full copy of all the
images). disk images).
When using the (unrelated) @code{-snapshot} option When using the (unrelated) @code{-snapshot} option
(@ref{disk_images_snapshot_mode}), you can always make VM snapshots, (@ref{disk_images_snapshot_mode}), you can always make VM snapshots,

View File

@ -29,16 +29,19 @@ is the disk image format. It is guessed automatically in most cases. The followi
@item raw @item raw
Raw disk image format (default). This format has the advantage of Raw disk image format (default). This format has the advantage of
being simple and easily exportable to all other emulators. If your file being simple and easily exportable to all other emulators. If your
system supports @emph{holes} (for example in ext2 or ext3 on Linux), file system supports @emph{holes} (for example in ext2 or ext3 on
then only the written sectors will reserve space. Use @code{qemu-img Linux or NTFS on Windows), then only the written sectors will reserve
info} to know the real size used by the image or @code{ls -ls} on space. Use @code{qemu-img info} to know the real size used by the
Unix/Linux. image or @code{ls -ls} on Unix/Linux.
@item qcow @item qcow2
QEMU image format, the most versatile format. Use it to have smaller QEMU image format, the most versatile format. Use it to have smaller
images (useful if your filesystem does not supports holes, for example images (useful if your filesystem does not supports holes, for example
on Windows), optional AES encryption and zlib based compression. on Windows), optional AES encryption, zlib based compression and
support of multiple VM snapshots.
@item qcow
Old QEMU image format. Left for compatibility.
@item cow @item cow
User Mode Linux Copy On Write image format. Used to be the only growable 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 image format in QEMU. It is supported only for compatibility with
@ -104,7 +107,8 @@ are detected and suppressed from the destination image.
Give information about the disk image @var{filename}. Use it in Give information about the disk image @var{filename}. Use it in
particular to know the size reserved on disk which can be different particular to know the size reserved on disk which can be different
from the displayed size. from the displayed size. If VM snapshots are stored in the disk image,
they are displayed too.
@end table @end table
@c man end @c man end