hod24-ctf/FullStackNote/run.sh
2024-12-03 14:24:04 +01:00

13 lines
218 B
Bash
Executable file

#!/bin/sh
MEM_SIZE_MB=25
#run qemu with sss as BIOS and uart redirected to stdin
qemu-system-i386 \
-m ${MEM_SIZE_MB}M \
-machine q35 \
-bios sss \
-serial stdio \
-nographic \
-monitor none