Do people still use Vagrant? If you do and your distro of choice is Rocky Linux, you might find yourself stuck in the box version = 5.0.0 for some reason. Here is how you can use a newer box:
# A minimal Vagrantfile for rocky linux that works for me
Vagrant.configure("2") do |config|
config.vm.synced_folder ".", "/vagrant", disabled: true
if Vagrant.has_plugin?("vagrant-vbguest")
config.vbguest.auto_update = false
end
config.ssh.insert_key = false
config.vm.define "rocky8test" do |rocky|
rocky.vm.box = "rockylinux/8"
rocky.vm.box_version = "8.0.0"
rocky.vm.provider "virtualbox" do |domain|
domain.customize ["modifyvm", :id, "--firmware", "efi"]
end
end
end
PS. yes the link to version > 9.0.0 box is broken, we might need to ask Rocky to fix that.