How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "shk/ubuntu-20.04-arm64"
config.vm.box_version = "2023.06.19"
end
vagrant init shk/ubuntu-20.04-arm64 \
--box-version 2023.06.19
vagrant up
This version was created about 1 year ago.
You need to add following in Vagrantfile to make it work
config.vm.provider 'vmware_fusion' do |p|
p.linked_clone = false
end