-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Open
Description
Debug output
https://gist.github.com/AMGI-Pipeline/03aad02b267681d649ecdbc5cb00736e
Expected behavior
Vagrant up command should execute without error, Virtualbox vm should start, and I should be able to vagrant ssh into the vm.
Actual behavior
Vagrant up command errors with:
Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period. ...
VM Starts.
Vagrant ssh times out
Reproduction information
Vagrant version
Vagrant 2.4.3
Host operating system
Ubuntu 22.04
Guest operating system
Ubuntu 16.04
Steps to reproduce
- install Linux ubuntu 22.04 dist on AMD® Ryzen threadripper system
- ensure virtualization is enabled in host BIOS
- install virtualbox 7.1.6
- install vagrant 2.4.3
- vagrant init bento/ubuntu-16.04
- vagrant up
Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-16.04"
end