Vagrant up: there are various reports on the installed version of GuestAdditions

On execution, vagrant upI get:

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...

I had a quick search, but nothing that resolves this.

It doesn't seem to affect anything, so it just wonders what the best practice is here ...

+11
source share
4 answers

Maybe it's too late for the OP, but in case this helps someone, the comments in the vagrant-vbguest plugin project on GitHub suggest that the add-ons are installed correctly, but are reported incorrectly. Updating to the latest version fixed this for me:

vagrant plugin update
Updating installed plugins...
Updated 'vagrant-vbguest' to version '0.14.2'!
+8
source

, vagrant ubuntu apt, !

sudo apt-get purge vagrant

sudo apt-get clean

sudo apt-get autoremove

vagrant .deb Hashicop https://www.vagrantup.com/downloads.html , , , vagrant apt

clean autoremove .deb !!

0

Virtualbox 5.2.18 Ubuntu 18.04 Virtualbox 5.2.18

: .

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

GitHub

0

. Vagrantfile - Vagrant.configure("2") do | config | .

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

Source: https://habr.com/ru/post/1676127/


All Articles