How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "mpasternak/focal64-arm"
config.vm.box_version = "202101.0.0"
end
vagrant init mpasternak/focal64-arm \
--box-version 202101.0.0
vagrant up
This version was created over 3 years ago.
First incarnation. If you want to run Vagrant on Apple Silicon M1 Mac / Macbook, this is your box to go. Based on Ubuntu 20.04 LTS for ARM.
This box is missing Parallel Tools for the Guest OS, as they're not yet available for arm64 architecture, so Vagrant will fail with this message:
==> staging: Mounting shared folders...
staging: /vagrant => /Users/mpasternak/Programowanie/bpp-on-ansible
Failed to mount folders in Linux guest. This is usually because
the "prl_fs" file system is not available. Please verify that
Parallels Tools are properly installed in the guest and
can work properly. If so, the VM reboot can solve a problem.
The command attempted was:
mount -t prl_fs -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` vagrant /vagrant
mount -t prl_fs -o uid=`id -u vagrant`,gid=`id -g vagrant` vagrant /vagrant