Updating guest additions on ubuntu/focal64 hits timeout
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
cloud-images |
New
|
Medium
|
John Chittum | ||
virtualbox (Ubuntu) |
New
|
Undecided
|
Unassigned | ||
virtualbox-guest-additions (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
On my host I have a more recent version of the VirtualBox guest additions, so while provisioning the VM Vagrant tries to update them. But the installation hangs and finally hits a timeout. Here you can find the full output: https:/
The content of /var/log/
$ cat /var/log/
Building the main Guest Additions 7.0.8 module for kernel 5.4.0-150-generic.
Building the shared folder support module.
Building the graphics driver module.
Could not find the X.Org or XFree86 Window System, skipping.
Content of /etc/cloud/
$ cat /etc/cloud/
build_name: server
serial: 20230612
Edit:
You can reproduce this using the following minimal Vagrantfile on an host with a recent version of the guest additions:
Vagrant.
config.vm.box = "ubuntu/focal64"
end
description: | updated |
Changed in cloud-images: | |
importance: | Undecided → Medium |
assignee: | nobody → John Chittum (jchittum) |
A similar, but slightly different thing, also happens with ubuntu/jammy64. There the installation hangs without hitting the timeout, and I manually interrupted it after more than an hour (close to an hour and a half). Here is the full output: https:/ /pastebin. com/xLYRHnf1.
The Vagrantfile that I used is as follows:
Vagrant. configure( "2") do |config|
config.vm.box = "ubuntu/jammy64"
end