linux-floppy-router/run-qemu.sh
2025-03-29 03:52:35 -04:00

12 lines
234 B
Bash

#!/bin/bash
# Run QEMU emulating a 486, booting from a floppy specified as first parameter
set -e
qemu-system-i386 \
-m 16m \
-fda "${1}" \
-nographic \
-nic user,model=rtl8139 \
-nic bridge,br=vmbr-lan,model=rtl8139
tput reset