Some useful command to help running and setup qemu…
-
Create an empty compressed 10 Go disk image (in
qcow2format):1$ qemu-img create -f qcow2 /home/kevin/qemu-disk-image.qcow 10G
-
Boot on your machine’s CD-Rom in qemu with previous disk image as primary HDD:
1$ qemu -cdrom /dev/cdrom -hda /home/kevin/qemu-disk-image.qcow -boot d
-
Same as above but with a CD-Rom
isoimage:1$ qemu -cdrom /home/kevin/ubuntu.iso -hda /home/kevin/qemu-disk-image.qcow -boot d
-
Boot the previously created disk image:
1$ qemu /home/kevin/qemu-disk-image.qcow
-
Convert
qcowimage to arawimage:1$ qemu-img convert /home/kevin/qemu-disk-image.qcow -O raw /home/kevin/qemu-disk-image.raw
-
Convert
rawimage to aqcowimage:1$ qemu-img convert -f raw qemu-disk-image.raw -O qcow2 qemu-disk-image.qcow
-
Mount a RAW disk image:
1$ mount -o loop,offset=32256 /home/kevin/qemu-disk-image.raw /media/qemu/
-
Mount a
qcow2disk image via thenbdprotocol (don’t forget to install thenbd-clientpackage):1$ modprobe nbd max_part=63 2$ qemu-nbd -c /dev/nbd0 /home/kevin/qemu-disk-image.qcow2 3$ mount /dev/nbd0p1 /media/qemu
-
To run a x86_64 guest system on a 32-bit host, simply use
qemu-system-x86_64binary command instead ofqemu.