]>
Commit | Line | Data |
---|---|---|
acd935ef FB |
1 | @example |
2 | @c man begin SYNOPSIS | |
3 | usage: qemu-img command [command options] | |
4 | @c man end | |
5 | @end example | |
6 | ||
7 | @c man begin OPTIONS | |
8 | ||
9 | The following commands are supported: | |
153859be SB |
10 | |
11 | @include qemu-img-cmds.texi | |
acd935ef FB |
12 | |
13 | Command parameters: | |
14 | @table @var | |
15 | @item filename | |
16 | is a disk image filename | |
5fafdf24 | 17 | @item base_image |
acd935ef FB |
18 | is the read-only disk image which is used as base for a copy on |
19 | write image; the copy on write image only stores the modified data | |
f58c7b35 TS |
20 | @item output_base_image |
21 | forces the output image to be created as a copy on write | |
22 | image of the specified base image; @code{output_base_image} should have the same | |
23 | content as the input's base image, however the path, image format, etc may | |
24 | differ | |
9230eaf6 AL |
25 | @item base_fmt |
26 | is the disk image format of @var{base_image}. for more information look at @var{fmt} | |
5fafdf24 | 27 | @item fmt |
acd935ef FB |
28 | is the disk image format. It is guessed automatically in most cases. The following formats are supported: |
29 | ||
30 | @table @code | |
31 | @item raw | |
32 | ||
33 | Raw disk image format (default). This format has the advantage of | |
19d36792 FB |
34 | being simple and easily exportable to all other emulators. If your |
35 | file system supports @emph{holes} (for example in ext2 or ext3 on | |
36 | Linux or NTFS on Windows), then only the written sectors will reserve | |
37 | space. Use @code{qemu-img info} to know the real size used by the | |
38 | image or @code{ls -ls} on Unix/Linux. | |
acd935ef | 39 | |
a6af8e5f AB |
40 | @item host_device |
41 | ||
42 | Host device format. This format should be used instead of raw when | |
43 | converting to block devices or other devices where "holes" are not | |
44 | supported. | |
45 | ||
19d36792 | 46 | @item qcow2 |
acd935ef FB |
47 | QEMU image format, the most versatile format. Use it to have smaller |
48 | images (useful if your filesystem does not supports holes, for example | |
19d36792 FB |
49 | on Windows), optional AES encryption, zlib based compression and |
50 | support of multiple VM snapshots. | |
51 | @item qcow | |
52 | Old QEMU image format. Left for compatibility. | |
acd935ef FB |
53 | @item cow |
54 | User Mode Linux Copy On Write image format. Used to be the only growable | |
55 | image format in QEMU. It is supported only for compatibility with | |
56 | previous versions. It does not work on win32. | |
9aebd98a SW |
57 | @item vdi |
58 | VirtualBox 1.1 compatible image format. | |
acd935ef | 59 | @item vmdk |
e5d80f94 | 60 | VMware 3 and 4 compatible image format. |
acd935ef FB |
61 | @item cloop |
62 | Linux Compressed Loop image, useful only to reuse directly compressed | |
63 | CD-ROM images present for example in the Knoppix CD-ROMs. | |
64 | @end table | |
65 | ||
5fafdf24 | 66 | @item size |
eff44266 KW |
67 | is the disk image size in bytes. Optional suffixes @code{k} or @code{K} |
68 | (kilobyte, 1024) @code{M} (megabyte, 1024k) and @code{G} (gigabyte, 1024M) | |
69 | and T (terabyte, 1024G) are supported. @code{b} is ignored. | |
acd935ef FB |
70 | |
71 | @item output_filename | |
5fafdf24 | 72 | is the destination disk image filename |
acd935ef FB |
73 | |
74 | @item output_fmt | |
75 | is the destination format | |
eff44266 KW |
76 | @item options |
77 | is a comma separated list of format specific options in a | |
78 | name=value format. Use @code{-o ?} for an overview of the options supported | |
79 | by the used format | |
80 | ||
acd935ef FB |
81 | |
82 | @item -c | |
83 | indicates that target image must be compressed (qcow format only) | |
d2c639d6 BS |
84 | @item -h |
85 | with or without a command shows help and lists the supported formats | |
86 | @end table | |
87 | ||
88 | Parameters to snapshot subcommand: | |
89 | ||
90 | @table @option | |
91 | ||
92 | @item snapshot | |
93 | is the name of the snapshot to create, apply or delete | |
94 | @item -a | |
95 | applies a snapshot (revert disk to saved state) | |
96 | @item -c | |
97 | creates a snapshot | |
98 | @item -d | |
99 | deletes a snapshot | |
100 | @item -l | |
101 | lists all snapshots in the given image | |
acd935ef FB |
102 | @end table |
103 | ||
104 | Command description: | |
105 | ||
106 | @table @option | |
eff44266 | 107 | @item create [-F @var{base_fmt}] [-b @var{base_image}] [-f @var{fmt}] [-o @var{options}] @var{filename} [@var{size}] |
acd935ef FB |
108 | |
109 | Create the new disk image @var{filename} of size @var{size} and format | |
5fafdf24 | 110 | @var{fmt}. |
acd935ef FB |
111 | |
112 | If @var{base_image} is specified, then the image will record only the | |
113 | differences from @var{base_image}. No size needs to be specified in | |
114 | this case. @var{base_image} will never be modified unless you use the | |
115 | @code{commit} monitor command. | |
116 | ||
eff44266 KW |
117 | The size can also be specified using the @var{size} option with @code{-o}, |
118 | it doesn't need to be specified separately in this case. | |
119 | ||
acd935ef FB |
120 | @item commit [-f @var{fmt}] @var{filename} |
121 | ||
122 | Commit the changes recorded in @var{filename} in its base image. | |
123 | ||
eff44266 | 124 | @item convert [-c] [-f @var{fmt}] [-O @var{output_fmt}] [-o @var{options}] [-B @var{output_base_image}] @var{filename} [@var{filename2} [...]] @var{output_filename} |
acd935ef FB |
125 | |
126 | Convert the disk image @var{filename} to disk image @var{output_filename} | |
eff44266 KW |
127 | using format @var{output_fmt}. It can be optionally compressed (@code{-c} |
128 | option) or use any format specific options like encryption (@code{-o} option). | |
acd935ef | 129 | |
eff44266 | 130 | Only the formats @code{qcow} and @code{qcow2} support encryption or compression. The |
acd935ef FB |
131 | compression is read-only. It means that if a compressed sector is |
132 | rewritten, then it is rewritten as uncompressed data. | |
133 | ||
134 | Encryption uses the AES format which is very secure (128 bit keys). Use | |
135 | a long password (16 characters) to get maximum protection. | |
136 | ||
137 | Image conversion is also useful to get smaller image when using a | |
138 | growable format such as @code{qcow} or @code{cow}: the empty sectors | |
139 | are detected and suppressed from the destination image. | |
140 | ||
141 | @item info [-f @var{fmt}] @var{filename} | |
142 | ||
143 | Give information about the disk image @var{filename}. Use it in | |
144 | particular to know the size reserved on disk which can be different | |
19d36792 FB |
145 | from the displayed size. If VM snapshots are stored in the disk image, |
146 | they are displayed too. | |
d2c639d6 BS |
147 | |
148 | @item snapshot [-l | -a @var{snapshot} | -c @var{snapshot} | -d @var{snapshot} ] @var{filename} | |
149 | ||
150 | List, apply, create or delete snapshots in image @var{filename}. | |
acd935ef FB |
151 | @end table |
152 | ||
153 | @c man end | |
154 | ||
155 | @ignore | |
156 | ||
157 | @setfilename qemu-img | |
158 | @settitle QEMU disk image utility | |
159 | ||
160 | @c man begin SEEALSO | |
161 | The HTML documentation of QEMU for more precise information and Linux | |
162 | user mode emulator invocation. | |
163 | @c man end | |
164 | ||
165 | @c man begin AUTHOR | |
166 | Fabrice Bellard | |
167 | @c man end | |
168 | ||
169 | @end ignore |