qemush/qemu/launchers/windows10

16 lines
346 B
Text
Raw Normal View History

2023-12-13 12:41:28 +01:00
#!/bin/sh -x
# Store VM name in environment variable
export QEMUSH_NAME
export QEMUSH_RAM=4G
export QEMUSH_BASE=kvm
[ -z "$QEMUSH_NAME" ] && QEMUSH_NAME=$(basename "$0")
# Launch the virtual machine
exec spice \
-drive file="$(pathof disk)",if=virtio \
-net user,hostname="${QEMUSH_NAME}" \
2023-12-13 12:41:28 +01:00
-usbdevice tablet \
-name "$QEMUSH_NAME" \
2023-12-13 12:41:28 +01:00
"$@"