diff --git a/tests/disk.sh b/tests/disk.sh new file mode 100644 index 0000000..e8edb7c --- /dev/null +++ b/tests/disk.sh @@ -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 diff --git a/tests/qemu.sh b/tests/qemu.sh new file mode 100644 index 0000000..afb182b --- /dev/null +++ b/tests/qemu.sh @@ -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