Sample Header Ad - 728x90

Run windows 10 ARM on QEMU

2 votes
1 answer
4248 views
I have downloaded the Windows 10 ARM on my Android phone, but it stops when I press any keys to boot from the CD or DVD. Image Image Image Image Click the images for full-size This is my start.sh file:
#!/bin/bash
sleep 2
echo "Starting ..."
qemu-system-aarch64 \
  -M virt \
  -cpu cortex-a57 \
  -smp 6 \
  -m 1G \
  -pflash QEMU_EFI.img \
  -pflash QEMU_VARS.img \
  -device VGA \
  -device nec-usb-xhci \
  -device usb-kbd \
  -device usb-mouse \
  -device usb-storage,drive=install \
  -drive if=none,id=install,format=raw,media=cdrom,file=arm.ISO \
  -device usb-storage,drive=drivers \
  -drive if=none,id=drivers,readonly=on,file=drivers.vhdx \
  -device virtio-blk,drive=system \
  -drive if=none,id=system,format=raw,file=Hard.qcow2 \
  -vnc 127.0.0.1:2
And there it stops working. What can I do to make it go off successfully?
Asked by Maher_2000 (113 rep)
Jan 8, 2019, 11:24 PM
Last activity: Nov 17, 2023, 09:46 AM