
qemu
List of commands for qemu:
-
qemu:tldr:08e82 qemu: Boot from image emulating i386 architecture.$ qemu-system-i386 -hda ${image_name-img}try on your machineexplain this command
-
qemu:tldr:32920 qemu: Boot QEMU instance with a live ISO image.$ qemu-system-i386 -hda ${image_name-img} -cdrom ${os_image-iso} -boot dtry on your machineexplain this command
-
qemu:tldr:5849f qemu: Boot from physical device (e.g. from USB to test bootable medium).$ qemu-system-i386 -hda /dev/${storage_device}try on your machineexplain this command
-
qemu:tldr:74c75 qemu: Boot from image emulating x64 architecture.$ qemu-system-x86_64 -hda ${image_name-img}try on your machineexplain this command
-
qemu:tldr:c7df3 qemu: Specify amount of RAM for instance.$ qemu-system-i386 -m 256 -hda image_name.img -cdrom os-image.iso -boot dtry on your machineexplain this command