1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
sudo su && apt install debootstrap debootstrap --arch=arm64 buster /opt/debian/ http://ftp.cn.debian.org/debian
mount -o bind /dev /opt/debian/dev mount -o bind /proc /opt/debian/proc mount -o bind /sys /opt/debian/sys chroot /opt/debian/ /bin/bash -l
apt update && apt install qemu-system-arm qemu-efi-aarch64 seabios vgabios
qemu-img create -f qcow2 system.qcow2 20G
qemu-system-aarch64 \ -M virt-2.12 -smp 4 -m 2G -cpu host -enable-kvm \ -bios /usr/share/qemu-efi-aarch64/QEMU_EFI.fd \ -device ramfb -device qemu-xhci,id=xhci \ -device usb-kbd -device usb-tablet -k en-us \ -device virtio-blk,drive=system \ -drive if=none,id=system,cache=unsafe,file=system.qcow2 \ -device usb-storage,drive=install \ -drive if=none,id=install,format=raw,media=cdrom,file=2004.iso \ -device usb-storage,drive=drivers \ -drive if=none,id=drivers,media=cdrom,file=virtio-win.iso \ -device virtio-net,disable-legacy=on,netdev=net0 \ -netdev user,id=net0,hostfwd=tcp::3389-:3389 -vnc :0
|