How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "krutaw/rocky_linux_9_arm"
  config.vm.box_version = "0.0.1"
end
vagrant init krutaw/rocky_linux_9_arm \
  --box-version 0.0.1
vagrant up

This version was created over 1 year ago.

Initial version. Example Vagrantfile:

Vagrant.configure("2") do |config|
  config.vm.box = "krutaw/rocky_linux_9_arm"
  config.vm.provider "vmware_desktop" do |v|
      v.ssh_info_public = true
      v.gui = true
      v.linked_clone = false
      v.vmx["ethernet0.virtualdev"] = "vmxnet3"
      v.vmx["ethernet0.pcislotnumber"] = "160"
      v.vmx["numvcpus"] = "4"
    end
end
1 provider for this version.
  • vmware_fusion
    unknown Hosted by Vagrant Cloud (753 MB)