qemu-img.texi 5.3 KB
Newer Older
B
bellard 已提交
1 2 3 4 5 6 7 8 9 10
@example
@c man begin SYNOPSIS
usage: qemu-img command [command options]
@c man end
@end example

@c man begin OPTIONS

The following commands are supported:
@table @option
11
@item create [-e] [-6] [-F @var{base_fmt}] [-b @var{base_image}] [-f @var{fmt}] @var{filename} [@var{size}]
B
bellard 已提交
12
@item commit [-f @var{fmt}] @var{filename}
13
@item convert [-c] [-e] [-6] [-f @var{fmt}] [-O @var{output_fmt}] [-B @var{output_base_image}] @var{filename} [@var{filename2} [...]] @var{output_filename}
B
bellard 已提交
14
@item info [-f @var{fmt}] @var{filename}
B
blueswir1 已提交
15
@item snapshot [-l | -a @var{snapshot} | -c @var{snapshot} | -d @var{snapshot}] @var{filename}
B
bellard 已提交
16 17 18 19 20 21
@end table

Command parameters:
@table @var
@item filename
 is a disk image filename
22
@item base_image
B
bellard 已提交
23 24
is the read-only disk image which is used as base for a copy on
    write image; the copy on write image only stores the modified data
25 26 27 28 29
@item output_base_image
forces the output image to be created as a copy on write
image of the specified base image; @code{output_base_image} should have the same
content as the input's base image, however the path, image format, etc may
differ
30 31
@item base_fmt
is the disk image format of @var{base_image}. for more information look at @var{fmt}
32
@item fmt
B
bellard 已提交
33 34 35 36 37 38
is the disk image format. It is guessed automatically in most cases. The following formats are supported:

@table @code
@item raw

Raw disk image format (default). This format has the advantage of
B
update  
bellard 已提交
39 40 41 42 43
being simple and easily exportable to all other emulators. If your
file system supports @emph{holes} (for example in ext2 or ext3 on
Linux or NTFS on Windows), then only the written sectors will reserve
space. Use @code{qemu-img info} to know the real size used by the
image or @code{ls -ls} on Unix/Linux.
B
bellard 已提交
44

B
update  
bellard 已提交
45
@item qcow2
B
bellard 已提交
46 47
QEMU image format, the most versatile format. Use it to have smaller
images (useful if your filesystem does not supports holes, for example
B
update  
bellard 已提交
48 49 50 51
on Windows), optional AES encryption, zlib based compression and
support of multiple VM snapshots.
@item qcow
Old QEMU image format. Left for compatibility.
B
bellard 已提交
52 53 54 55 56
@item 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.
@item vmdk
B
update  
bellard 已提交
57
VMware 3 and 4 compatible image format.
B
bellard 已提交
58 59 60 61 62
@item cloop
Linux Compressed Loop image, useful only to reuse directly compressed
CD-ROM images present for example in the Knoppix CD-ROMs.
@end table

63
@item size
B
bellard 已提交
64
is the disk image size in kilobytes. Optional suffixes @code{M}
B
blueswir1 已提交
65 66
(megabyte, 1024 * 1024) and @code{G} (gigabyte, 1024 * 1024 * 1024)
are supported and any @code{k} or @code{K} is ignored.
B
bellard 已提交
67 68

@item output_filename
69
is the destination disk image filename
B
bellard 已提交
70 71 72 73 74 75

@item output_fmt
 is the destination format

@item -c
indicates that target image must be compressed (qcow format only)
76
@item -e
B
bellard 已提交
77
indicates that the target image must be encrypted (qcow format only)
78 79
@item -6
indicates that the target image must use compatibility level 6 (vmdk format only)
B
blueswir1 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
@item -h
with or without a command shows help and lists the supported formats
@end table

Parameters to snapshot subcommand:

@table @option

@item snapshot
is the name of the snapshot to create, apply or delete
@item -a
applies a snapshot (revert disk to saved state)
@item -c
creates a snapshot
@item -d
deletes a snapshot
@item -l
lists all snapshots in the given image
B
bellard 已提交
98 99 100 101 102
@end table

Command description:

@table @option
103
@item create [-6] [-e] [-b @var{base_image}] [-f @var{fmt}] @var{filename} [@var{size}]
B
bellard 已提交
104 105

Create the new disk image @var{filename} of size @var{size} and format
106
@var{fmt}.
B
bellard 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119

If @var{base_image} is specified, then the image will record only the
differences from @var{base_image}. No size needs to be specified in
this case. @var{base_image} will never be modified unless you use the
@code{commit} monitor command.

@item commit [-f @var{fmt}] @var{filename}

Commit the changes recorded in @var{filename} in its base image.

@item convert [-c] [-e] [-f @var{fmt}] @var{filename} [-O @var{output_fmt}] @var{output_filename}

Convert the disk image @var{filename} to disk image @var{output_filename}
120
using format @var{output_fmt}. It can be optionally encrypted
B
bellard 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
(@code{-e} option) or compressed (@code{-c} option).

Only the format @code{qcow} supports encryption or compression. The
compression is read-only. It means that if a compressed sector is
rewritten, then it is rewritten as uncompressed data.

Encryption uses the AES format which is very secure (128 bit keys). Use
a long password (16 characters) to get maximum protection.

Image conversion is also useful to get smaller image when using a
growable format such as @code{qcow} or @code{cow}: the empty sectors
are detected and suppressed from the destination image.

@item info [-f @var{fmt}] @var{filename}

Give information about the disk image @var{filename}. Use it in
particular to know the size reserved on disk which can be different
B
update  
bellard 已提交
138 139
from the displayed size. If VM snapshots are stored in the disk image,
they are displayed too.
B
blueswir1 已提交
140 141 142 143

@item snapshot [-l | -a @var{snapshot} | -c @var{snapshot} | -d @var{snapshot} ] @var{filename}

List, apply, create or delete snapshots in image @var{filename}.
B
bellard 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
@end table

@c man end

@ignore

@setfilename qemu-img
@settitle QEMU disk image utility

@c man begin SEEALSO
The HTML documentation of QEMU for more precise information and Linux
user mode emulator invocation.
@c man end

@c man begin AUTHOR
Fabrice Bellard
@c man end

@end ignore