Last active
December 21, 2015 09:29
-
-
Save jhawthorn/6285480 to your computer and use it in GitHub Desktop.
Installing IE VMs on ubuntu Needs 50-60 GB of free disk space
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 characters
# Ensure VT-x is enabled in the BIOS | |
sudo apt-get install virtualbox unar | |
wget http://download.virtualbox.org/virtualbox/4.2.10/Oracle_VM_VirtualBox_Extension_Pack-4.2.10.vbox-extpack | |
sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.2.10.vbox-extpack | |
curl -s https://raw.github.com/xdissent/ievms/master/ievms.sh | bash | |
# Wait a long time... |
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 characters
# Updating to latest virtualbox, since the apt version has some issues | |
# Run first as root | |
echo deb http://download.virtualbox.org/virtualbox/debian raring contrib >> /etc/apt/sources.list | |
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - | |
apt-get update | |
apt-get install virtualbox-4.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment