准备

安装依赖

建议安装qemu-full包, 我以前安装的不是这个, 导致gpu加载不了

1
sudo pacman -S qemu-full

启动系统

注意固件版本和系统镜像版本

1
2
3
4
5
6
7
8
9
10
11
12
13
qemu-system-loongarch64 \
-m 4G \
-cpu la464-loongarch-cpu \
-machine virt \
-smp 4 \
-bios ./QEMU_EFI_8.0.fd \
-serial stdio \
-device virtio-gpu-pci \
-net nic -net user \
-device nec-usb-xhci,id=xhci,addr=0x1b \
-device usb-tablet,id=tablet,bus=xhci.0,port=1 \
-device usb-kbd,id=keyboard,bus=xhci.0,port=2 \
-hda archlinux-xfce4-2023.05.10-loong64.qcow2
image
image
image
image