I installed virtualbox-ose, FreeBSD 9.1-release, and set it up as shown in this thread. I downloaded the Linux Mint DVD ISO just to try it things out. Mint starts up and gives me a menu to select installation and some other things but, when I select install, the screen hangs and the mouse cursor disappears. I'm unable to do anything else but do a hard reset on my box. I'm using the i3 window manager.
Here's my nearly identical version of the installation script supplied by taz in the previous link. I could use a little guidance since I'm apparently so close:
Here's my nearly identical version of the installation script supplied by taz in the previous link. I could use a little guidance since I'm apparently so close:
Code:
#!/bin/sh
#-----------------------------------------------------------------------
#CONFIG
#-----------------------------------------------------------------------
#set dir for virtual hard disk image
hdPath=/usr/home/$USER/virtualbox/VBoxHD
#set virtual hard disk image in MB
hdSize=20480
#set virtual machine name
vmName="mint"
#set os type. Run "VBoxManage list ostypes" to list options,c/p under ID.
osType="Linux"
#set path to guest ISO
guestISO="/usr/home/$USER/virtualbox/linuxmint-14.1-mate-dvd-64bit.iso"
#set RAM size
ramSize=1024
#set RAM size for GPU
gpuRamSize=128
#set network interface
nic="em0"
#create folder for virtual hard disk image
if [ ! -d $hdPath ]
then
mkdir $hdPath
fi
#-----------------------------------------------------------------------
#CREATE
#-----------------------------------------------------------------------
#create a new virtual hard disk image.
VBoxManage createhd --filename $hdPath/$vmName.vdi --size $hdSize
#create a new XML virtual machine definition file
VBoxManage createvm --name $vmName --ostype $osType --register
#add an IDE controller with a DVD drive attached, and the install ISO inserted into the drive. Set "--medium none" to detach all.
VBoxManage storagectl $vmName --name "IDE Controller" --add ide
VBoxManage storageattach $vmName --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium $hdPath/$vmName.vdi
VBoxManage storageattach $vmName --storagectl "IDE Controller" --port 1 --device 0 --type dvddrive --medium $guestISO
#set boot order
VBoxManage modifyvm $vmName --boot1 dvd --boot2 disk --boot3 none --boot4 none
#set I/O APIC support
#VBoxManage modifyvm $vmName --ioapic on
#set the amount of RAM
VBoxManage modifyvm $vmName --memory $ramSize
#set the amount of RAM for virtual graphics card
VBoxManage modifyvm $vmName --vram $gpuRamSize
#set network mode(briged,NAT...)
VBoxManage modifyvm $vmName --nic1 bridged --bridgeadapter1 $nic
#enable USB support
VBoxManage modifyvm $vmName --usb on
#enable sound
VBoxManage modifyvm $vmName --audio oss --audiocontroller ac97