Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/usr-virtualbox.sh
diff options
context:
space:
mode:
authorDavid Farning <dfarning@launchpad.sugarlabs.org>2010-02-01 17:00:25 (GMT)
committer David Farning <dfarning@launchpad.sugarlabs.org>2010-02-01 17:00:25 (GMT)
commitc5b5463d94d5e33af318a19d6615a23c834bc8be (patch)
tree6bfec7e4b0f0f9b78439dd78fb3532fedad7dddf /usr-virtualbox.sh
parent0808698ce1d7776d61071a7bf5c8ae8e6e73e06d (diff)
ugly update for 0201 release
Diffstat (limited to 'usr-virtualbox.sh')
-rwxr-xr-xusr-virtualbox.sh22
1 files changed, 22 insertions, 0 deletions
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}