Files
my-os-project2/run/qemu-x86_64-hdd.sh
2025-11-23 22:56:45 +01:00

12 lines
162 B
Bash
Executable File

#!/bin/sh
set -x
qemu-system-x86_64 \
-machine pc \
-m 4G \
-boot d \
-hda disk.hdd \
-device pci-serial,chardev=char0 -chardev stdio,id=char0 \
$@