-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathqemu_installer.sh
13 lines (13 loc) · 987 Bytes
/
qemu_installer.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
qemu-system-arm \
-machine virt \
-cpu max \
-smp 4 \
-m 4G \
-kernel boot/vmlinuz_installer \
-initrd boot/initrd_installer.gz \
-device virtio-blk-device,drive=disk0 \
-drive if=none,id=disk0,file=debian.qcow2 \
-device virtio-net-device,netdev=net0 \
-netdev user,id=net0,hostfwd=tcp:127.0.0.1:5555-:22 \
-nographic \
-no-reboot