added tests to see if disk and qemu are working

This commit is contained in:
cvoges12 2021-09-27 17:52:23 +00:00
parent f279b949a3
commit 62afdc22e6
2 changed files with 23 additions and 0 deletions

12
tests/disk.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/sh
qemu-system-x86_64 \
-enable-kvm \
-cpu host \
-smp 4 \
-m 4G \
-boot d \
-cdrom Win*.iso \
-drive file=/dev/sda,format=raw,cache=none,if=virtio \
-vga virtio \
-monitor stdio

11
tests/qemu.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/sh
qemu-system-x86_64 \
-enable-kvm \
-cpu host \
-smp 4 \
-m 4G \
-boot d \
-cdrom Win*.iso \
-vga virtio \
-monitor stdio