So I am building a cross platform dev env. Works great on ubuntu and OS X. Dies on Win 10.
The first issue is the centos/7 dependancy no rsync for first mount of /vagrant.
I am attempting to override that as follows:
config.vm.synced_folder ".", "/vagrant", type: "virtualbox"
Which stops the vagrant up process from blowing up but the mount fails.
mount -t vboxsf -o uid=1000,gid=1000 vagrant /vagrant
Blows up. I have virtual box extensions. I am at latest vagrant and virtualbox.
The kernel modules are loading but it says something about a device not existing.
So inside virtual box I see the shared folder. instead of the path being C:\blah\blah\blah
it is \\?\C:\blah\blah\blah. If I remove the leading \\? and attempt the mount it works.
Can I create a work around to fix this? is the leading stuff supposed to work? Is this a real bug?
Thanks