qemush/qemu/launchers/windows10

18 lines
395 B
Text
Raw Normal View History

#!/usr/bin/env sh
export QEMUSH_RAM=4G
2024-03-08 23:48:58 +01:00
export QEMUSH_BASE=virtiofs,kvm
[ -z "$QEMUSH_NAME" ] && {
export QEMUSH_NAME
QEMUSH_NAME=$(basename "$0")
}
# Launch the virtual machine
exec spice \
-drive file="$(pathof disk)",if=virtio \
2024-03-08 23:48:58 +01:00
-net nic -net user,hostname="${QEMUSH_NAME}" \
2023-12-13 12:41:28 +01:00
-usbdevice tablet \
-name "$QEMUSH_NAME" \
2024-03-08 23:48:58 +01:00
-device intel-hda -device hda-duplex,audiodev=snd0 \
2023-12-13 12:41:28 +01:00
"$@"
set -x