Statistics
| Branch: | Revision:

root / qemu-img.texi @ a22f123c

History | View | Annotate | Download (8.8 kB)

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:
10

    
11
@include qemu-img-cmds.texi
12

    
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.
20

    
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.
25

    
26
@item output_filename
27
is the destination disk image filename
28

    
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.
35

    
36

    
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
49

    
50
Parameters to snapshot subcommand:
51

    
52
@table @option
53

    
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
65

    
66
Command description:
67

    
68
@table @option
69
@item check [-f @var{fmt}] @var{filename}
70

    
71
Perform a consistency check on the disk image @var{filename}.
72

    
73
Only the formats @code{qcow2}, @code{qed} and @code{vdi} support
74
consistency checks.
75

    
76
@item create [-f @var{fmt}] [-o @var{options}] @var{filename} [@var{size}]
77

    
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.
81

    
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).
86

    
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.
89

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

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

    
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}
95

    
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).
99

    
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.
103

    
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.
107

    
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.
112

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

    
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.
119

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

    
122
List, apply, create or delete snapshots in image @var{filename}.
123

    
124
@item rebase [-f @var{fmt}] [-p] [-u] -b @var{backing_file} [-F @var{backing_fmt}] @var{filename}
125

    
126
Changes the backing file of an image. Only the formats @code{qcow2} and
127
@code{qed} support changing the backing file.
128

    
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}.
132

    
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.
139

    
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.
143

    
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.
146

    
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.
152

    
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
157

    
158
@item resize @var{filename} [+ | -]@var{size}
159

    
160
Change the disk image as if it had been created with @var{size}.
161

    
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!
165

    
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
170

    
171
Supported image file formats:
172

    
173
@table @option
174
@item raw
175

    
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.
182

    
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.
188

    
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.
197

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

    
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.
205

    
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.
210

    
211
@end table
212

    
213

    
214
@item qcow
215
Old QEMU image format. Left for compatibility.
216

    
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
224

    
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.
233

    
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
241

    
242
@item vpc
243
VirtualPC compatible image format (VHD).
244

    
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
249

    
250

    
251
@c man end
252

    
253
@ignore
254

    
255
@setfilename qemu-img
256
@settitle QEMU disk image utility
257

    
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
262

    
263
@c man begin AUTHOR
264
Fabrice Bellard
265
@c man end
266

    
267
@end ignore