From c5b5463d94d5e33af318a19d6615a23c834bc8be Mon Sep 17 00:00:00 2001 From: David Farning Date: Mon, 01 Feb 2010 17:00:25 +0000 Subject: ugly update for 0201 release --- (limited to 'usr-virtualbox.sh') diff --git a/usr-virtualbox.sh b/usr-virtualbox.sh new file mode 100755 index 0000000..af67b2d --- /dev/null +++ b/usr-virtualbox.sh @@ -0,0 +1,22 @@ +#!/bin/sh +## + +RELEASE=USR-i386-0201 + +VBoxManage createvm --name ${RELEASE} --ostype Ubuntu --register + +VBoxManage modifyvm ${RELEASE} --memory 512 + +VBoxManage modifyvm ${RELEASE} --nic1 nat --acpi on + +VBoxManage storagectl ${RELEASE} --name ${RELEASE}.ide --add ide --controller PIIX4 + +VBoxManage createhd --filename ${RELEASE}.vdi --size 5000 --remember + +VBoxManage storageattach ${RELEASE} --type hdd --storagectl ${RELEASE}.ide --port 0 --device 0 --medium ${RELEASE}.vdi + +VBoxManage storageattach ${RELEASE} --type dvddrive --storagectl ${RELEASE}.ide --port 1 --device 0 --medium ~/USR/${RELEASE}.iso + +VBoxManage modifyvm ${RELEASE} --boot1 dvd --nic1 nat --acpi on + +VBoxManage startvm ${RELEASE} -- cgit v0.9.1