(01)Install Vagrant
Linux
1sudo apt-get install -y vagrant2# Requires VirtualBox or libvirt providerCreate and manage portable development VMs
What is this?
Vagrant spins up reproducible VMs for development using a simple Vagrantfile.
Where to create or edit the main configuration — paths below match the setup steps.
VagrantfileLocation: Project root
VM box, networking, and provisioning
Step 01
1sudo apt-get install -y vagrant2# Requires VirtualBox or libvirt providerStep 02
1vagrant init ubuntu/jammy642vagrant up3vagrant sshStep 03
1vagrant status