Vagrant en Ubuntu 20.04 (host) con ubuntu anterior activado (invitado)

Vagrant en Ubuntu 20.04 (host) con ubuntu anterior activado (invitado)

Estoy en Ubuntu Budgie 20.04 (host) con kernel 5.4.0-74-generic.

VirtualBox Versión 6.1.22 r144080

Vagabundo: 2.2.16

Desde hace una semana no puedo ejecutar vagrant con una versión anterior de ubuntu como mi sistema invitado, por ejemplo

$ vagrant init ubuntu/xenial64
$ vagrant up

Luego obtengo la información y los errores:

Got different reports about installed GuestAdditions version:
Virtualbox on your host claims:   5.0.18
VBoxService inside the vm claims: 5.1.38
Going on, assuming VBoxService is correct...
Vagrant was unable to mount VirtualBox shared folders. This is usually
because the filesystem "vboxsf" is not available. This filesystem is
made available via the VirtualBox Guest Additions and kernel module.
Please verify that these guest additions are properly installed in the
guest. This is not a bug in Vagrant and is usually caused by a faulty
Vagrant box. For context, the command attempted was:

mount -t vboxsf -o uid=1000,gid=1000,_netdev vagrant /vagrant

The error output from the command was:

: No such device

Si comienzo una caja vagabunda con focal en su lugar.

$ vagrant init ubuntu/focal64
$ vagrant up

Funciona a las mil maravillas.

¿Alguna sugerencia de qué puedo hacer aquí para que esto vuelva a funcionar?

No lo sé, pero creo que tiene que ver con una actualización del kernel en algún momento, pero no he tenido suerte al degradar el kernel de Linux.

Esta es una publicación cruzada dehttps://stackoverflow.com/questions/67833305/vagrant-on-ubuntu-20-04-host-with-older-ubuntu-on-guestComo me sugirieron, podría obtener ayuda más fácilmente aquí.

Respuesta1

Esta no es realmente la respuesta, pero terminó siendo mi solución.

Me esforcé por conseguir que mi antiguo ubuntu 16.04 lo actualizara a 20.04.

Fue bastante trabajo para mí, así que mi sugerencia es simplemente:

Mantén tus cajas actualizadas, para no caer en situaciones como esta. :)

información relacionada