Vagrant Error: Unable to Mount VirtualBox Shared Folders (Guest Additions, vboxsf)

前端 未结 11 1451
滥情空心
滥情空心 2021-01-31 08:32

The Issue

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

11条回答
  •  失恋的感觉
    2021-01-31 09:27

    You can downgrade VirtualBox or edit the line in the file:

    On my setup this was Line 206 of:

    C:\HashiCorp\Vagrant\embedded\gems\gems\vagrant-1.9.2\lib\vagrant\util\platform.rb

    on my host machine.

    I did this and it worked fine on Windows 10! I would like to add what I did with line 206:

    Before edit: "\\?\" + path.gsub("/", "\")

    After edit: path.gsub("/", "\")

提交回复
热议问题