vagrant up: Got different reports about installed GuestAdditions version

前端 未结 4 742
误落风尘
误落风尘 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:54

    I had same issue on Ubuntu 18.04 with Virtualbox 5.2.18

    Fix: add the following lines to your vagrant file.

    if Vagrant.has_plugin?("vagrant-vbguest")
        config.vbguest.auto_update = false  
    end
    

    See this comment at github

提交回复
热议问题