QEMU: Difference between revisions

From Fundamental Ramen
Jump to navigation Jump to search
Line 41: Line 41:


<source lang="text">
<source lang="text">
cd ~\Downloads
# with Tiny Code Generator - very slow
qemu-system-x86_64 -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G
# with Tiny Code Generator (multithread) - still slow
qemu-system-x86_64 -accel tcg,thread=multi -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G
# with Intel HAXM - Need to disable Hyper-V, so conflicts with Docker Desktop
qemu-system-x86_64 -accel hax -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G
Failed to open the HAX device!
Open HAX device failed
Failed to get Hax capability:6u
No accelerator found.
# with Windows Hypervisor Platform - good!
# with Windows Hypervisor Platform - good!
qemu-system-x86_64 -accel whpx -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G
qemu-system-x86_64 -accel whpx -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G
Windows Hypervisor Platform accelerator is operational
Windows Hypervisor Platform accelerator is operational
</source>
<source lang="text">
"C:\Program Files\qemu-2.1.0\qemu-system-x86_64.exe"
-drive "file=C:\disk1.vmdk,index=0,media=disk"
-drive "file=C:\disk2.vmdk,index=1,media=disk"
-smp 4
-net nic,vlan=0,macaddr=52-54-00-B3-47-55,model=rtl8139
-net user,hostfwd=tcp::9000-:80
-m 1024
</source>
</source>

Revision as of 08:08, 13 May 2020

Install Ubuntu 20.04 LTS on QEMU for Windows

List available accelerators

qemu-system-x86_64 -accel help
Accelerators supported in QEMU binary:
hax
whpx
tcg

Performance comparison between accelerators

Tiny Code Generator

Very slow, forgot it ...

# Single thread
qemu-system-x86_64 -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G

# Multithread
qemu-system-x86_64 -accel tcg,thread=multi -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G

Intel HAXM

Need to install Intel HAXM first, and disable Hyper-V.
If Docker Desktop was installed, this is not a good solution.

qemu-system-x86_64 -accel hax -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G
Failed to open the HAX device!
Open HAX device failed
Failed to get Hax capability:6u
No accelerator found.

Windows Hypervisor Platform

# with Windows Hypervisor Platform - good!
qemu-system-x86_64 -accel whpx -cdrom ubuntu-20.04-desktop-amd64.iso -boot once=d -m 1G
Windows Hypervisor Platform accelerator is operational