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

前端 未结 11 1455
滥情空心
滥情空心 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:33

    I am using Vagrant 1.9.4 and VirtualBox 5.1.20. No solution here helped me.

    I finally got around the problem by disabling auto updates for the guest additions:

    Vagrant.configure("2") do |config|
        config.vbguest.auto_update = false
        [...]
    end
    

    It's more of a hacky workaround than a solution. I still don't really know what the actual issue is, but I assume it is connected to this: https://www.virtualbox.org/ticket/16670

提交回复
热议问题