How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "perk/ubuntu-23.04-arm64"
config.vm.box_version = "20230420"
end
vagrant init perk/ubuntu-23.04-arm64 \
--box-version 20230420
vagrant up
This version was created 5 months ago.
Ubuntu 23.04 (Lunar Lobster) arm64.
Derived from cloud image: https://cloud-images.ubuntu.com/releases/23.04/release-20230420/ubuntu-23.04-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-23.04-arm64
Run vagrant
vagrant up --provider qemu
If you see the following password prompt:
==> default: Successfully added box 'perk/ubuntu-23.04-arm64' (v20230420) 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-23.04-arm64"
config.vm.box_version = "20230420"
config.vm.synced_folder ".", "/vagrant", disabled: true
end