#!/usr/bin/env sh export QEMUSH_RAM=4G export QEMUSH_BASE=kvm [ -z "$QEMUSH_NAME" ] && { export QEMUSH_NAME QEMUSH_NAME=$(basename "$0") } # Launch the virtual machine set -- spice \ -drive file="$(pathof disk)",if=virtio \ -net nic -net user,hostname="${QEMUSH_NAME}" \ -usbdevice tablet \ -device intel-hda -device hda-duplex,audiodev=snd0 \ "$@" # Execute the machine set -x exec "$@"