pandora/vm/build.sh

31 lines
640 B
Bash
Raw Normal View History

#!/bin/sh
2013-07-03 14:25:57 +00:00
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)
2014-09-25 13:27:28 +00:00
sudo vmbuilder $hypervisor ubuntu --suite=trusty \
--verbose --debug \
2013-07-03 14:25:57 +00:00
--arch $arch \
--dest $base/pandora \
--hostname pandora \
--swapsize 512 \
2013-07-03 14:25:57 +00:00
--rootsize $size \
--user pandora \
2013-07-03 14:25:57 +00:00
--pass $password \
--addpkg linux-image-generic \
--components main,universe,multiverse \
2015-03-20 09:28:03 +00:00
--firstboot=$base/firstboot.sh \
2013-07-03 14:25:57 +00:00
$extra