Last active
February 11, 2024 01:31
-
-
Save seandenigris/5039427 to your computer and use it in GitHub Desktop.
Revisions
-
Sean DeNigris revised this gist
Feb 26, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ # Reference: http://stdioe.blogspot.com/2012/01/creating-virtual-machine-with.html VM_NAME="Debian Squeeze 2" DEBIAN_CD_IMAGE="debian-6.0.7-amd64-netinst.iso" # Create VM VBoxManage createvm --name "$VM_NAME" --ostype Debian_64 --register -
Sean DeNigris revised this gist
Feb 26, 2013 . 1 changed file with 10 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,19 +1,21 @@ #!/bin/bash # Reference: http://stdioe.blogspot.com/2012/01/creating-virtual-machine-with.html VM_NAME="Debian Squeeze 2" DEBIAN_CD_IMAGE="/Users/sean/Documents/Reference/Programming2/Linux CD Images/Debian/debian-6.0.7-amd64-netinst.iso" # Create VM VBoxManage createvm --name "$VM_NAME" --ostype Debian_64 --register # VM Settings # ioapic should be enabled for all 64-bit Oses (per manual) # rtcuseutc - clock in UTC time (enabled by default for VB GUI) VBoxManage modifyvm "$VM_NAME" --memory 384 --acpi on --ioapic on --rtcuseutc on --boot1 dvd --boot2 disk --boot3 floppy --mouse usbtablet --vram 12 --audio coreaudio --audiocontroller ac97 # Hard Disk VBoxManage createhd --filename "$VM_NAME.vdi" --size 10000 VBoxManage storagectl "$VM_NAME" --name "SATA Controller" --add sata --controller IntelAhci --sataportcount 1 VBoxManage storageattach "$VM_NAME" --storagectl "SATA Controller" --port 0 --device 0 --type hdd --medium "$VM_NAME.vdi" VBoxManage storagectl "$VM_NAME" --name "IDE Controller" --add ide --controller PIIX4 VBoxManage storageattach "$VM_NAME" --storagectl "IDE Controller" --port 0 --device 0 --type dvddrive --medium "$DEBIAN_CD_IMAGE" -
Sean DeNigris renamed this gist
Feb 26, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Sean DeNigris renamed this gist
Feb 26, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Sean DeNigris created this gist
Feb 26, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ #!/usr/bin/bash # Reference: http://stdioe.blogspot.com/2012/01/creating-virtual-machine-with.html VM_NAME="Debian Squeeze 2" DEBIAN_CD_IMAGE="debian-6.0.3-amd64-i386-netinst.iso" # Create VM VBoxManage createvm --name "$VM_NAME" --ostype Debian --register # RAM VBoxManage modifyvm "$VM_NAME" --memory 384 # Hard Disk VBoxManage createhd --filename "$VM_NAME.vdi" --size 10000 --format VBoxManage storagectl "$VM_NAME" --name "SATA Controller" --add sata --controller IntelAhci VBoxManage storageattach "$VM_NAME" --storagectl "SATA Controller" --port 0 --device 0 --type hdd --medium "$VM_NAME.vdi" VBoxManage storagectl "$VM_NAME" --name "IDE Controller" --add ide --controller PIIX4 VBoxManage storageattach "$VM_NAME" --storagectl "IDE Controller" --port 1 --device 0 --type dvddrive --medium "$DEBIAN_CD_IMAGE"