Last active
August 29, 2015 14:00
-
-
Save freshjones/f97c8356796e83ae94d2 to your computer and use it in GitHub Desktop.
vagrant guest additions not matching - 4.3.10
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 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