#!/bin/bash # try to boot the ISO in qemu . config || exit 0 usage() { cat < -c Make an empty disk image and boot from CD -d Boot the disk image -i Path to iso EOF exit 0 } boot="" iso="${OUTPUT}" while getopts cdi: flag; do case $flag in c) boot="c$boot" ;; d) boot="d$boot" ;; i) iso="$OPTARG" ;; ?) usage ;; esac done case $boot in ?) ;; *) usage ;; esac set -e set -x cfg="" case $boot in c) echo "booting CD with empty disk" rm -f ${DISK} dd if=/dev/zero "of=${DISK}" bs=1M count=0 seek=10240 cfg+=" -drive file=${iso},index=1,media=cdrom" cfg+=" -drive file=${DISK},index=0,media=disk,format=raw" cfg+=" -boot d" ;; d) echo "booting disk with no CD" cfg+=" -drive file=${DISK},index=0,media=disk,format=raw" cfg+=" -boot c" ;; esac qemu-system-x86_64 -enable-kvm -m 2048 -vga vmware $cfg