Skip to content

Instantly share code, notes, and snippets.

@dickstar
Last active March 14, 2017 04:09
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 dickstar/78ba9f6b06114dbff1a73837b1b557eb to your computer and use it in GitHub Desktop.
Save dickstar/78ba9f6b06114dbff1a73837b1b557eb to your computer and use it in GitHub Desktop.
Solve Vagrant error : Failed to mount folders in Linux guest
# Vagrant was unable to mount VirtualBox shared folders. This is usually
# because the filesystem "vboxsf" is not available. This filesystem is
# made available via the VirtualBox Guest Additions and kernel module.
# Please verify that these guest additions are properly installed in the
# guest. This is not a bug in Vagrant and is usually caused by a faulty
# Vagrant box. For context, the command attempted was:
# mount -t vboxsf -o uid=1000,gid=1000 vagrant /vagrant
# The error output from the command was:
# : No such file or directory
vagrant plugin install vagrant-vbguest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment