Created
October 31, 2025 22:55
-
-
Save ansrivas/5e3d205bf1d38871aa73273f312c6d8d to your computer and use it in GitHub Desktop.
test-qemu-aarch64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # qemu-img create win11-arm64.img 100G | |
| qemu-system-aarch64 \ | |
| -M virt -m 8G -cpu max,pauth-impdef=on -smp 8 \ | |
| -bios QEMU_EFI.fd \ | |
| -accel tcg,thread=multi\ | |
| -device ramfb \ | |
| -device qemu-xhci -device usb-kbd -device usb-tablet \ | |
| -nic user,model=virtio-net-pci \ | |
| -device usb-storage,drive=install \ | |
| -drive if=none,id=install,format=raw,media=cdrom,file=./Win11_25H2_English_Arm64.iso \ | |
| -device usb-storage,drive=virtio-drivers \ | |
| -drive if=none,id=virtio-drivers,format=raw,media=cdrom,file=./virtio-win-0.1.285.iso \ | |
| -drive if=virtio,id=system,format=raw,file=./win11-arm64.img |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment