pandora/vm/build.sh

31 lines
640 B
Bash
Executable File

#!/bin/sh
size=1048576 #in MB
arch=amd64 #i368 or amd64
password=pandora
hypervisor=vbox #vbox or kvm
extra=""
#make available as pandora.local
extra="--addpkg avahi-daemon"
#to create and include in libvirt:
#hypervisor=kvm
#extra="--libvirt qemu:///system"
base=$(pwd)
sudo vmbuilder $hypervisor ubuntu --suite=trusty \
--verbose --debug \
--arch $arch \
--dest $base/pandora \
--hostname pandora \
--swapsize 512 \
--rootsize $size \
--user pandora \
--pass $password \
--addpkg linux-image-generic \
--components main,universe,multiverse \
--firstboot=$base/firstboot.sh \
$extra