DistroHopper/quickemu.sh

242 lines
5.9 KiB
Bash
Raw Normal View History

2020-03-15 23:13:25 +00:00
#!/usr/bin/env bash
function vm_delete() {
if [ -f "${disk_img}" ]; then
rm "${disk_img}"
echo "SUCCESS! Deleted ${disk_img}"
2020-03-15 23:13:25 +00:00
fi
exit 0
}
function vm_restore() {
if [ -f "${disk_img_snapshot}" ]; then
mv "${disk_img_snapshot}" "${disk_img}"
fi
echo "SUCCESS! Restored ${disk_img_snapshot}"
2020-03-15 23:13:25 +00:00
exit 0
}
function vm_snapshot() {
if [ -f "${disk_img_snapshot}" ]; then
mv "${disk_img_snapshot}" "${disk_img_snapshot}.old"
fi
qemu-img create -b "${disk_img}" -f qcow2 "${disk_img_snapshot}" -q
2020-03-15 23:13:25 +00:00
if [ $? -eq 0 ]; then
echo "SUCCESS! Created ${disk_img_snapshot}"
2020-03-15 23:13:25 +00:00
else
echo "ERROR! Failed to create ${disk_img_snapshot}"
2020-03-15 23:13:25 +00:00
fi
exit 0
}
function vm_boot() {
local VMNAME=$(basename ${VM} .conf)
local BIOS=""
local GL="on"
local UI="sdl"
if [ ${ENABLE_EFI} -eq 1 ]; then
if [ "${ENGINE}" == "virgil" ] && [ -e /snap/qemu-virgil/current/usr/share/qemu/edk2-x86_64-code.fd ] ; then
BIOS="-drive if=pflash,format=raw,readonly,file=/snap/qemu-virgil/current/usr/share/qemu/edk2-x86_64-code.fd"
GL="off"
UI="gtk"
elif [ -e /usr/share/qemu/OVMF.fd ]; then
BIOS="-drive if=pflash,format=raw,readonly,file=/usr/share/qemu/OVMF.fd"
GL="off"
UI="gtk"
else
echo " - EFI: Booting requested but no EFI firmware found."
echo " Booting from Legacy BIOS."
fi
echo " - BIOS: ${BIOS}"
else
echo " - BIOS: Legacy"
fi
echo " - Disk: ${disk_img}"
echo " - Size: ${disk}"
if [ ! -f "${disk_img}" ]; then
# If there is no disk image, create a new image.
qemu-img create -q -f qcow2 "${disk_img}" "${disk}"
echo " - ISO: ${iso}"
else
# If there is a disk image, do not boot from the iso
iso=""
fi
if [ -e ${disk_img_snapshot} ]; then
echo " - Snapshot: ${disk_img_snapshot}"
fi
local cores="1"
local allcores=$(nproc --all)
if [ ${allcores} -ge 8 ]; then
cores="4"
elif [ ${allcores} -ge 4 ]; then
cores="2"
fi
echo " - CPU: ${cores} Core(s)"
local ram="2G"
local allram=$(free --mega -h | grep Mem | cut -d':' -f2 | cut -d'G' -f1 | sed 's/ //g')
if [ ${allram} -ge 64 ]; then
ram="4G"
elif [ ${allram} -ge 16 ]; then
ram="3G"
fi
echo " - RAM: ${ram}"
2020-03-15 23:13:25 +00:00
# Determine what display to use
local display="-display ${UI},gl=${GL}"
local ver=$(qemu-${ENGINE} -version | head -n1 | cut -d' ' -f4 | cut -d'(' -f1)
if [ "${ver}" == "2.11.1" ]; then
display="-display sdl"
# Fix stuttering mouse pointer when SDL backend is used.
export SDL_VIDEO_X11_DGAMOUSE=0
fi
echo " - UI: ${UI}"
echo " - GL: ${GL}"
# TODO: Detect Wayland here and "do the right thing".
# Determine the most suitable 16:9 resolution of for VM based
# on the lowest resolution connected monitor.
local xres=800
local yres=600
local LOWEST_WIDTH=$(xrandr --listmonitors | grep -v Monitors | cut -d' ' -f4 | cut -d'/' -f1 | sort | head -n1)
if [ ${LOWEST_WIDTH} -ge 3840 ]; then
xres=3200
yres=1800
elif [ ${LOWEST_WIDTH} -ge 2560 ]; then
xres=2048
yres=1152
elif [ ${LOWEST_WIDTH} -ge 1920 ]; then
xres=1664
yres=936
elif [ ${LOWEST_WIDTH} -ge 1280 ]; then
xres=1152
yres=648
fi
if [ "${ENGINE}" == "virgil" ]; then
echo " - Monitor: ${xres}x${yres}"
2020-03-19 01:41:58 +00:00
fi
local SAMBA=""
# If smbd is available, export $HOME to the guest via samba
if [ "${ENGINE}" == "virgil" ] && [ -e /snap/qemu-virgil/current/usr/sbin/smbd ]; then
SAMBA=",smb=${HOME}"
elif [ "${ENGINE}" == "system-x86_64" ] && [ -e /usr/sbin/smbd ]; then
SAMBA=",smb=${HOME}"
fi
if [ -n "${SAMBA}" ]; then
echo " - smbd: ${HOME} will be exported to the guest via smb://10.0.2.4/qemu"
else
echo " - smbd: %{HOME} will not be exported to the guest. 'smbd' not found."
fi
#echo " - QEMU: qemu-${ENGINE}"
2020-03-15 23:13:25 +00:00
# Boot the iso image
qemu-${ENGINE} -name ${VMNAME},process=${VMNAME} \
${BIOS} \
2020-03-15 23:13:25 +00:00
-cdrom "${iso}" \
-drive "file=${disk_img},format=qcow2,if=virtio,aio=native,cache.direct=on" \
-enable-kvm \
-machine q35,accel=kvm \
-cpu host,kvm=on \
-m ${ram} \
-smp ${cores} \
-net nic,model=virtio \
-net user"${SAMBA}" \
-rtc base=localtime,clock=host \
-soundhw hda \
-usb -device usb-kbd -device usb-tablet \
-object rng-random,id=rng0,filename=/dev/urandom \
-device virtio-rng-pci,rng=rng0 \
-device qemu-xhci \
-device virtio-vga,virgl=on,xres=${xres},yres=${yres} \
2020-03-19 01:41:58 +00:00
${display} \
"$@" 2>/dev/null
2020-03-15 23:13:25 +00:00
}
function usage() {
local LAUNCHER=$(basename $0)
2020-03-15 23:13:25 +00:00
echo
echo "Usage"
echo " ${LAUNCHER} --vm ubuntu.conf"
echo
echo "You can also pass optional parameters"
echo " --delete : Delete the disk image."
2020-03-19 01:41:58 +00:00
echo " --efi : Enable EFI BIOS (experimental)."
2020-03-15 23:13:25 +00:00
echo " --restore : Restore the snapshot."
echo " --snapshot : Create a disk snapshot."
echo " --virgil : Use virgil, if available."
exit 1
}
disk="64G"
2020-03-19 01:41:58 +00:00
BIOS=""
2020-03-15 23:13:25 +00:00
DELETE=0
2020-03-19 01:41:58 +00:00
ENABLE_EFI=0
2020-03-15 23:13:25 +00:00
ENGINE="system-x86_64"
RESTORE=0
SNAPSHOT=0
VM=""
while [ $# -gt 0 ]; do
case "${1}" in
2020-03-15 23:33:52 +00:00
-efi|--efi)
2020-03-19 01:41:58 +00:00
ENABLE_EFI=1
2020-03-15 23:33:52 +00:00
shift;;
2020-03-15 23:13:25 +00:00
-delete|--delete)
DELETE=1
shift;;
-restore|--restore)
2020-03-16 02:08:18 +00:00
RESTORE=1
2020-03-15 23:13:25 +00:00
shift;;
-snapshot|--snapshot)
SNAPSHOT=1
shift;;
-virgil|--virgil)
ENGINE="virgil"
shift;;
-vm|--vm)
VM="$2"
shift
shift;;
-h|--h|-help|--help)
usage;;
*)
echo "ERROR! \"${1}\" is not a supported parameter."
usage;;
esac
done
if [ -n "${VM}" ] || [ -e "${VM}" ]; then
2020-03-15 23:13:25 +00:00
source "${VM}"
echo Starting "${VM}"
2020-03-15 23:13:25 +00:00
if [ -n "${disk_img}" ]; then
disk_img_snapshot="${disk_img}.snapshot"
else
echo "ERROR! No disk_img defined."
exit 1
fi
else
echo "ERROR! VM not found."
exit 1
2020-03-15 23:13:25 +00:00
fi
if [ ${DELETE} -eq 1 ]; then
vm_delete
fi
if [ ${RESTORE} -eq 1 ]; then
vm_restore
fi
if [ ${SNAPSHOT} -eq 1 ]; then
vm_snapshot
fi
2020-03-16 02:08:18 +00:00
vm_boot