12 lines
228 B
Bash
Executable file
12 lines
228 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sudo qemu-system-x86_64 \
|
|
-enable-kvm \
|
|
-cpu host \
|
|
-smp 4 \
|
|
-m 4G \
|
|
-boot d \
|
|
-cdrom Win*.iso \
|
|
-drive file=/dev/sdb,format=raw,cache=none,if=virtio \
|
|
-vga virtio \
|
|
-monitor stdio
|