Last active
August 29, 2015 13:57
-
-
Save dmcrodrigues/9903878 to your computer and use it in GitHub Desktop.
Vagrant: fix mount of shared folders
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
# Environment | |
# | |
# OS: Mac OS X 10.9 | |
# Vagrant: 1.5.1 | |
# Box: precise64 | |
# Error | |
# | |
# Failed to mount folders in Linux guest. 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 | |
# login; run this; logout & reload | |
sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions /usr/lib/VBoxGuestAdditions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment