diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-16 21:59:02 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-16 21:59:02 +0000 |
commit | ec36ba14748e140dda237ba22ad3135e360b0d9f (patch) | |
tree | bcaa0fe4961882998a3acb19f225be006ab92a57 /qemu-img.texi | |
parent | 3ae43202754711808ea5186e327bfd0533dd88fc (diff) |
vmdk compatibility level 6 images, by Soren Hansen.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3175 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'qemu-img.texi')
-rw-r--r-- | qemu-img.texi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/qemu-img.texi b/qemu-img.texi index 5b99dff0aa..89f912df97 100644 --- a/qemu-img.texi +++ b/qemu-img.texi @@ -8,9 +8,9 @@ usage: qemu-img command [command options] The following commands are supported: @table @option -@item create [-e] [-b @var{base_image}] [-f @var{fmt}] @var{filename} [@var{size}] +@item create [-e] [-6] [-b @var{base_image}] [-f @var{fmt}] @var{filename} [@var{size}] @item commit [-f @var{fmt}] @var{filename} -@item convert [-c] [-e] [-f @var{fmt}] @var{filename} [-O @var{output_fmt}] @var{output_filename} +@item convert [-c] [-e] [-6] [-f @var{fmt}] @var{filename} [-O @var{output_fmt}] @var{output_filename} @item info [-f @var{fmt}] @var{filename} @end table @@ -67,12 +67,14 @@ is the destination disk image filename indicates that target image must be compressed (qcow format only) @item -e indicates that the target image must be encrypted (qcow format only) +@item -6 +indicates that the target image must use compatibility level 6 (vmdk format only) @end table Command description: @table @option -@item create [-e] [-b @var{base_image}] [-f @var{fmt}] @var{filename} [@var{size}] +@item create [-6] [-e] [-b @var{base_image}] [-f @var{fmt}] @var{filename} [@var{size}] Create the new disk image @var{filename} of size @var{size} and format @var{fmt}. |