I installed Vagrant on Windows 10 so I can create a personal local development environment in a virtual machine. Everything I\'ve read about Vagrant said I c
It is bug in Vbox. There is an solution to fix.
Login to Vbox guestos: By default password is (vagrant/vagrant)
su
ln -sf /opt/VBoxGuestAdditions-5.1.20/lib/VBoxGuestAdditions/mount.vboxsf /sbin/mount.vboxsf
mount -t vboxsf -o uid=1000,gid=1000 vagrant /vagrant
shutdown
run cmd in from local machine cmd prompt:
vagrant up
It will work.