Version
'bento/ubuntu-24.04' version '202502.21.0'
Environment
Windows 11, VirtualBox 7.1.6 r167084 (Qt6.5.3), Vagrant 2.4.3
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-24.04"
config.vm.network "forwarded_port", guest: 22, host: 2255, host_ip: "127.0.0.1"
config.vm.network "forwarded_port", guest: 5432, host: 5432, host_ip: "127.0.0.1"
config.vm.network "forwarded_port", guest: 8080, host: 8080, host_ip: "127.0.0.1"
config.vm.network "forwarded_port", guest: 5173, host: 5173, host_ip: "127.0.0.1"
config.vm.network "private_network", ip: "192.168.250.35"
config.vm.synced_folder "../ubuntu2404_data", "/vagrant_data"
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.provider "virtualbox" do |vb|
vb.memory = "8192"
vb.cpus = "4"
end
config.vm.provision :shell, path: "_vagrant/bootstrap.sh"
config.vm.hostname = "vagrant-ubuntu2404"
end
Scenario
Provision a VM once and use up and halt to boot and shut down the machine
Steps to Reproduce
Run vagrant up and vagrant halt to boot and shut down the machine
Expected Result
The VM boots without issues
Actual Result
Sometimes the VM boots OK, but sometimes it stalls during the boot on this stage:



Before this, I used ubuntu/jammy64, and it worked correctly, and the issue appeared after switching to bento/ubuntu-24.04.
Version
'bento/ubuntu-24.04' version '202502.21.0'
Environment
Windows 11, VirtualBox 7.1.6 r167084 (Qt6.5.3), Vagrant 2.4.3
Scenario
Provision a VM once and use
upandhaltto boot and shut down the machineSteps to Reproduce
Run
vagrant upandvagrant haltto boot and shut down the machineExpected Result
The VM boots without issues
Actual Result
Sometimes the VM boots OK, but sometimes it stalls during the boot on this stage:
Before this, I used
ubuntu/jammy64, and it worked correctly, and the issue appeared after switching tobento/ubuntu-24.04.