12 lines
117 B
Bash
Executable File
12 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
qemu-system-x86_64 \
|
|
-machine pc \
|
|
-m 4G \
|
|
-boot d \
|
|
-serial stdio \
|
|
-hda disk.hdd
|
|
$@
|