vagrant up: Got different reports about installed GuestAdditions version

前端 未结 4 749
误落风尘
误落风尘 2021-02-05 05:08

When doing a vagrant up I get:

Got different reports about installed GuestAdditions version:
Virtualbox on your host claims:   5.0.28
VBoxService in         


        
4条回答
  •  长情又很酷
    2021-02-05 05:50

    I've found a working solution. Add the following code to your Vagrantfile somewhere in the Vagrant.configure("2") do |config| section.

    if Vagrant.has_plugin? "vagrant-vbguest"
      config.vbguest.no_install  = true
      config.vbguest.auto_update = false
      config.vbguest.no_remote   = true
    end
    

提交回复
热议问题