Skip to content

Instantly share code, notes, and snippets.

@linkesch
Created September 27, 2016 07:43
Show Gist options
  • Save linkesch/0bfc93661bfcb9552d35747566cc8698 to your computer and use it in GitHub Desktop.
Save linkesch/0bfc93661bfcb9552d35747566cc8698 to your computer and use it in GitHub Desktop.
Fix vagrant not mounting shared folder

hashicorp/vagrant#3341 (comment)

Fix Step by step:

If you not have vbguest plugin, install it:

$ vagrant plugin install vagrant-vbguest

Run Vagrant

It is show a error.

$ vagrant up

Login on VM

$ vagrant ssh

Fix!

In the guest (VM logged).

$ sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions /usr/lib/VBoxGuestAdditions

Back on the host, reload Vagrant

$ vagrant reload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment