vagrant up:获得有关已安装的GuestAdditions版本的不同报告

Sno*_*ash 14 virtualbox vagrant

做的时候vagrant up我得到:

Got different reports about installed GuestAdditions version:
Virtualbox on your host claims:   5.0.28
VBoxService inside the vm claims: 5.1.18
Going on, assuming VBoxService is correct...
Run Code Online (Sandbox Code Playgroud)

我有一个快速搜索,但没有解决这个问题.

它似乎没有影响任何东西所以只是想知道这里的最佳做法是什么......

小智 9

对于OP来说可能为时已晚,但如果它对其他人有帮助,GitHub上vagrant-vbguest插件项目中的评论表明添加内容已正确安装但报告错误.更新到最新版本为我修复了它:

vagrant plugin update
Updating installed plugins...
Updated 'vagrant-vbguest' to version '0.14.2'!
Run Code Online (Sandbox Code Playgroud)


jsc*_*sse 5

Ubuntu 18.04我有同样的问题Virtualbox 5.2.18

修复:将以下行添加到您的 vagrant 文件中。

if Vagrant.has_plugin?("vagrant-vbguest")
    config.vbguest.auto_update = false  
end
Run Code Online (Sandbox Code Playgroud)

请参阅github 上的评论