Skip to content

Instantly share code, notes, and snippets.

@danielhomer
Created November 3, 2015 11:00
Show Gist options
  • Save danielhomer/10dd2015e0e91f81bf05 to your computer and use it in GitHub Desktop.
Save danielhomer/10dd2015e0e91f81bf05 to your computer and use it in GitHub Desktop.
Update Guest Additions to 5.0.2 on CentOS
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