How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "xandradx/generic-rocky9-vmware-aarch64"
config.vm.box_version = "0.0.2"
end
vagrant init xandradx/generic-rocky9-vmware-aarch64 \
--box-version 0.0.2
vagrant up
This version was created 10 months ago.
Initial Release for testing on VMware Fusion adapted from work done by: https://roboxes.org/ (Vagrant needs gui to start the box). Default interface to e1000e.
config.vm.provider "vmware_desktop" do |vb|
vb.gui = true
vb.vmx["ethernet0.virtualDev"] = "e1000e"
end