Forrest logo
back to context overview

qemu-img

List of commands for qemu-img:

  • qemu-img:tldr:1a346 qemu-img: Dump the allocation state of every sector of the specified disk image.
    $ qemu-img map ${image_name-img}
    try on your machine
    explain this command
  • qemu-img:tldr:7c73d qemu-img: Convert a VMware .vmdk disk image to a KVM .qcow2 disk image.
    $ qemu-img convert -f ${vmdk} -O ${qcow2} ${filename-foo-vmdk} ${filename-foo-qcow2}
    try on your machine
    explain this command
  • qemu-img:tldr:8bc51 qemu-img: Increase or decrease image size.
    $ qemu-img resize ${image_name-img} ${gigabytes}G
    try on your machine
    explain this command
  • qemu-img:tldr:b484c qemu-img: Create disk image with a specific size (in gigabytes).
    $ qemu-img create ${image_name-img} ${gigabytes}G
    try on your machine
    explain this command
  • qemu-img:tldr:e33b8 qemu-img: Show information about a disk image.
    $ qemu-img info ${image_name-img}
    try on your machine
    explain this command
back to context overview