How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "hbasria/ubuntu-20.04-server"
config.vm.box_version = "0.1.1"
end
vagrant init hbasria/ubuntu-20.04-server \
--box-version 0.1.1
vagrant up
This version was created 5 months ago.
eth0
Once you have Vagrant and VirtaulBox installed, run the following commands under your project directory:
# Initialize Vagrant
vagrant init hbasria/ubuntu-20.04-server
# Start the virtual machine
vagrant up
# SSH into this machine
vagrant ssh
# Terminate the virtual machine
vagrant destroy --force