Created
November 3, 2015 11:00
-
-
Save danielhomer/10dd2015e0e91f81bf05 to your computer and use it in GitHub Desktop.
Update Guest Additions to 5.0.2 on CentOS
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
vagrant ssh | |
cd /opt | |
sudo wget -c http://download.virtualbox.org/virtualbox/5.0.2/VBoxGuestAdditions_5.0.2.iso -O VBoxGuestAdditions_5.0.2.iso | |
sudo mount VBoxGuestAdditions_5.0.2.iso -o loop /mnt | |
cd /mnt | |
sudo sh VBoxLinuxAdditions.run --nox11 | |
cd /opt | |
sudo /etc/init.d/vboxadd setup | |
sudo chkconfig --add vboxadd | |
sudo chkconfig vboxadd on | |
exit | |
vagrant halt | |
vagrant up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment