blob: c42c44d74c7e2daa97a671a4de41927e07093e5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
#
# Run qemu-system-i386 on the baseline OS
#
#
# other options:
# -nographic
# -display gtk
#
QEMU=/home/course/csci352/bin/qemu-system-i386
exec $QEMU \
-serial mon:stdio \
-drive file=disk.img,index=0,media=disk,format=raw
|