10 lines
211 B
Bash
Executable File
10 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ISO=${1}
|
|
|
|
qemu-system-x86_64 \
|
|
-cpu qemu64 \
|
|
-m 8G \
|
|
-drive if=pflash,format=raw,readonly=on,file=/usr/share/ovmf/x64/OVMF_CODE.fd \
|
|
-cdrom "${ISO}" \
|
|
-S -s -d guest_errors,pcall,cpu_reset |