Skip to content

Instantly share code, notes, and snippets.

@yosssi
Last active August 29, 2015 13:59
Show Gist options
  • Save yosssi/10609991 to your computer and use it in GitHub Desktop.
Save yosssi/10609991 to your computer and use it in GitHub Desktop.
Vagrant box mounting error

Error

$ vagrant up

An error occurred during installation of VirtualBox Guest Additions 4.3.10. Some functionality may not work as intended.
In most cases it is OK that the "Window System drivers" installation failed.
==> default: Checking for guest additions in VM...
==> default: Mounting shared folders...
    default: /vagrant => /Users/yoshidakeiji/vagrant-test
ls. This is usually because
the "vboxsf" file system is not available. Please verify that
the guest additions are properly installed in the guest and
can work properly. The command attempted was:

mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` /vagrant /vagrant
mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g vagrant` /vagrant /vagrant

Solution

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

References

"vboxsf" file system is not available · Issue #92 · fideloper/Vaprobash

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