hod24-ctf/FullStackNote/run.sh

14 lines
218 B
Bash
Raw Normal View History

2024-12-03 14:24:04 +01:00
#!/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