Skip to content

Instantly share code, notes, and snippets.

@freshjones
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freshjones/f97c8356796e83ae94d2 to your computer and use it in GitHub Desktop.
Save freshjones/f97c8356796e83ae94d2 to your computer and use it in GitHub Desktop.
vagrant guest additions not matching - 4.3.10
vagrant plugin install vagrant-vbguest
vagrant up
sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions /usr/lib/VBoxGuestAdditions
vagrant reload
------------
also possible in VagrantFile but is broken, and would take some re-work
------------
config.vm.provision :shell, inline:
# Quick fix to enable vbguest on VirtualBox 4.3.10
# See https://github.com/mitchellh/vagrant/issues/3341
if [ ! -e /usr/lib/VBoxGuestAdditions ]; then
sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions /usr/lib/VBoxGuestAdditions || true
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment