1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-08 04:13:25 +02:00

Update qemu-img.md (#3330)

This commit is contained in:
DrivableJonatan 2019-10-06 14:07:46 +02:00 committed by Starbeamrainbowlabs
parent 4ee919925d
commit 386bd43dbb

View file

@ -4,7 +4,7 @@
- Create disk image with a specific size (in gigabytes):
`qemu-img create {{image_name.img}} {{gigabites}}G`
`qemu-img create {{image_name.img}} {{gigabytes}}G`
- Show information about a disk image:
@ -12,7 +12,7 @@
- Increase or decrease image size:
`qemu-img resize {{image_name.img}} {{gigabites}}G`
`qemu-img resize {{image_name.img}} {{gigabytes}}G`
- Dump the allocation state of every sector of the specified disk image:
@ -20,4 +20,4 @@
- Convert a VMWare .vmdk disk image to a KVM .qcow2 disk image:
`qemy-img convert -O qcow2 {{/path/to/file/foo.vmdk}} {{/path/to/file/foo.qcow2}}`
`qemu-img convert -O qcow2 {{/path/to/file/foo.vmdk}} {{/path/to/file/foo.qcow2}}`