Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/usr-virtualbox.sh
diff options
context:
space:
mode:
Diffstat (limited to 'usr-virtualbox.sh')
-rwxr-xr-xusr-virtualbox.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/usr-virtualbox.sh b/usr-virtualbox.sh
deleted file mode 100755
index af67b2d..0000000
--- a/usr-virtualbox.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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}