main: switch qemu_set_fd_handler to g_io_add_watch
[qemu.git] / qemu-img.texi
blob70fa321dff50734958a7674efc231358ca0028f8
1 @example
2 @c man begin SYNOPSIS
3 usage: qemu-img command [command options]
4 @c man end
5 @end example
7 @c man begin OPTIONS
9 The following commands are supported:
11 @include qemu-img-cmds.texi
13 Command parameters:
14 @table @var
15 @item filename
16  is a disk image filename
17 @item fmt
18 is the disk image format. It is guessed automatically in most cases. See below
19 for a description of the supported disk formats.
21 @item size
22 is the disk image size in bytes. Optional suffixes @code{k} or @code{K}
23 (kilobyte, 1024) @code{M} (megabyte, 1024k) and @code{G} (gigabyte, 1024M)
24 and T (terabyte, 1024G) are supported.  @code{b} is ignored.
26 @item output_filename
27 is the destination disk image filename
29 @item output_fmt
30  is the destination format
31 @item options
32 is a comma separated list of format specific options in a
33 name=value format. Use @code{-o ?} for an overview of the options supported
34 by the used format or see the format descriptions below for details.
37 @item -c
38 indicates that target image must be compressed (qcow format only)
39 @item -h
40 with or without a command shows help and lists the supported formats
41 @item -p
42 display progress bar (convert and rebase commands only)
43 @item -S @var{size}
44 indicates the consecutive number of bytes that must contain only zeros
45 for qemu-img to create a sparse image during conversion. This value is rounded
46 down to the nearest 512 bytes. You may use the common size suffixes like
47 @code{k} for kilobytes.
48 @end table
50 Parameters to snapshot subcommand:
52 @table @option
54 @item snapshot
55 is the name of the snapshot to create, apply or delete
56 @item -a
57 applies a snapshot (revert disk to saved state)
58 @item -c
59 creates a snapshot
60 @item -d
61 deletes a snapshot
62 @item -l
63 lists all snapshots in the given image
64 @end table
66 Command description:
68 @table @option
69 @item check [-f @var{fmt}] @var{filename}
71 Perform a consistency check on the disk image @var{filename}.
73 Only the formats @code{qcow2}, @code{qed} and @code{vdi} support
74 consistency checks.
76 @item create [-f @var{fmt}] [-o @var{options}] @var{filename} [@var{size}]
78 Create the new disk image @var{filename} of size @var{size} and format
79 @var{fmt}. Depending on the file format, you can add one or more @var{options}
80 that enable additional features of this format.
82 If the option @var{backing_file} is specified, then the image will record
83 only the differences from @var{backing_file}. No size needs to be specified in
84 this case. @var{backing_file} will never be modified unless you use the
85 @code{commit} monitor command (or qemu-img commit).
87 The size can also be specified using the @var{size} option with @code{-o},
88 it doesn't need to be specified separately in this case.
90 @item commit [-f @var{fmt}] @var{filename}
92 Commit the changes recorded in @var{filename} in its base image.
94 @item convert [-c] [-p] [-f @var{fmt}] [-O @var{output_fmt}] [-o @var{options}] [-s @var{snapshot_name}] [-S @var{sparse_size}] @var{filename} [@var{filename2} [...]] @var{output_filename}
96 Convert the disk image @var{filename} or a snapshot @var{snapshot_name} to disk image @var{output_filename}
97 using format @var{output_fmt}. It can be optionally compressed (@code{-c}
98 option) or use any format specific options like encryption (@code{-o} option).
100 Only the formats @code{qcow} and @code{qcow2} support compression. The
101 compression is read-only. It means that if a compressed sector is
102 rewritten, then it is rewritten as uncompressed data.
104 Image conversion is also useful to get smaller image when using a
105 growable format such as @code{qcow} or @code{cow}: the empty sectors
106 are detected and suppressed from the destination image.
108 You can use the @var{backing_file} option to force the output image to be
109 created as a copy on write image of the specified base image; the
110 @var{backing_file} should have the same content as the input's base image,
111 however the path, image format, etc may differ.
113 @item info [-f @var{fmt}] @var{filename}
115 Give information about the disk image @var{filename}. Use it in
116 particular to know the size reserved on disk which can be different
117 from the displayed size. If VM snapshots are stored in the disk image,
118 they are displayed too.
120 @item snapshot [-l | -a @var{snapshot} | -c @var{snapshot} | -d @var{snapshot} ] @var{filename}
122 List, apply, create or delete snapshots in image @var{filename}.
124 @item rebase [-f @var{fmt}] [-p] [-u] -b @var{backing_file} [-F @var{backing_fmt}] @var{filename}
126 Changes the backing file of an image. Only the formats @code{qcow2} and
127 @code{qed} support changing the backing file.
129 The backing file is changed to @var{backing_file} and (if the image format of
130 @var{filename} supports this) the backing file format is changed to
131 @var{backing_fmt}.
133 There are two different modes in which @code{rebase} can operate:
134 @table @option
135 @item Safe mode
136 This is the default mode and performs a real rebase operation. The new backing
137 file may differ from the old one and qemu-img rebase will take care of keeping
138 the guest-visible content of @var{filename} unchanged.
140 In order to achieve this, any clusters that differ between @var{backing_file}
141 and the old backing file of @var{filename} are merged into @var{filename}
142 before actually changing the backing file.
144 Note that the safe mode is an expensive operation, comparable to converting
145 an image. It only works if the old backing file still exists.
147 @item Unsafe mode
148 qemu-img uses the unsafe mode if @code{-u} is specified. In this mode, only the
149 backing file name and format of @var{filename} is changed without any checks
150 on the file contents. The user must take care of specifying the correct new
151 backing file, or the guest-visible content of the image will be corrupted.
153 This mode is useful for renaming or moving the backing file to somewhere else.
154 It can be used without an accessible old backing file, i.e. you can use it to
155 fix an image whose backing file has already been moved/renamed.
156 @end table
158 @item resize @var{filename} [+ | -]@var{size}
160 Change the disk image as if it had been created with @var{size}.
162 Before using this command to shrink a disk image, you MUST use file system and
163 partitioning tools inside the VM to reduce allocated file systems and partition
164 sizes accordingly.  Failure to do so will result in data loss!
166 After using this command to grow a disk image, you must use file system and
167 partitioning tools inside the VM to actually begin using the new space on the
168 device.
169 @end table
171 Supported image file formats:
173 @table @option
174 @item raw
176 Raw disk image format (default). This format has the advantage of
177 being simple and easily exportable to all other emulators. If your
178 file system supports @emph{holes} (for example in ext2 or ext3 on
179 Linux or NTFS on Windows), then only the written sectors will reserve
180 space. Use @code{qemu-img info} to know the real size used by the
181 image or @code{ls -ls} on Unix/Linux.
183 @item qcow2
184 QEMU image format, the most versatile format. Use it to have smaller
185 images (useful if your filesystem does not supports holes, for example
186 on Windows), optional AES encryption, zlib based compression and
187 support of multiple VM snapshots.
189 Supported options:
190 @table @code
191 @item backing_file
192 File name of a base image (see @option{create} subcommand)
193 @item backing_fmt
194 Image format of the base image
195 @item encryption
196 If this option is set to @code{on}, the image is encrypted.
198 Encryption uses the AES format which is very secure (128 bit keys). Use
199 a long password (16 characters) to get maximum protection.
201 @item cluster_size
202 Changes the qcow2 cluster size (must be between 512 and 2M). Smaller cluster
203 sizes can improve the image file size whereas larger cluster sizes generally
204 provide better performance.
206 @item preallocation
207 Preallocation mode (allowed values: off, metadata). An image with preallocated
208 metadata is initially larger but can improve performance when the image needs
209 to grow.
211 @end table
214 @item qcow
215 Old QEMU image format. Left for compatibility.
217 Supported options:
218 @table @code
219 @item backing_file
220 File name of a base image (see @option{create} subcommand)
221 @item encryption
222 If this option is set to @code{on}, the image is encrypted.
223 @end table
225 @item cow
226 User Mode Linux Copy On Write image format. Used to be the only growable
227 image format in QEMU. It is supported only for compatibility with
228 previous versions. It does not work on win32.
229 @item vdi
230 VirtualBox 1.1 compatible image format.
231 @item vmdk
232 VMware 3 and 4 compatible image format.
234 Supported options:
235 @table @code
236 @item backing_fmt
237 Image format of the base image
238 @item compat6
239 Create a VMDK version 6 image (instead of version 4)
240 @end table
242 @item vpc
243 VirtualPC compatible image format (VHD).
245 @item cloop
246 Linux Compressed Loop image, useful only to reuse directly compressed
247 CD-ROM images present for example in the Knoppix CD-ROMs.
248 @end table
251 @c man end
253 @ignore
255 @setfilename qemu-img
256 @settitle QEMU disk image utility
258 @c man begin SEEALSO
259 The HTML documentation of QEMU for more precise information and Linux
260 user mode emulator invocation.
261 @c man end
263 @c man begin AUTHOR
264 Fabrice Bellard
265 @c man end
267 @end ignore