How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "perk/ubuntu-22.10-arm64"
config.vm.box_version = "20230112"
end
vagrant init perk/ubuntu-22.10-arm64 \
--box-version 20230112
vagrant up
This version was created 4 months ago.
Ubuntu 22.10 (Kinetic Kudu) arm64.
Derived from cloud image: https://cloud-images.ubuntu.com/releases/22.10/release-20230112/ubuntu-22.10-server-cloudimg-arm64.img
Tested on MacBook with Apple M1 processor.
Works with qemu provider:
Install QEMU
brew install qemu
Install vagrant-qemu plugin
vagrant plugin install vagrant-qemu
Init Vagrantfile
vagrant init -m perk/ubuntu-22.10-arm64
Run vagrant
vagrant up --provider qemu
If you see the following password prompt:
==> default: Successfully added box 'perk/ubuntu-22.10-arm64' (v20230112) for 'libvirt'!
==> default: Importing a QEMU instance
default: Creating and registering the VM...
default: Successfully imported VM
Password:
Please disable synced folders:
Vagrant.configure("2") do |config|
config.vm.box = "perk/ubuntu-22.10-arm64"
config.vm.box_version = "20230112"
config.vm.synced_folder ".", "/vagrant", disabled: true
end