Cheatsheet
Reset machine
- destroy the existing
vagrant destroy
- remove the related directory
rm -rf .vagrant
- rebuild machine
vagrant up
list boxes
- list all boxes locally
vagrant box list
- remove all boxes
vagrant box list | awk '{print $1}' | xargs -I {} vagrant box remove {}
Troubleshooting
Cannot install plugin due to mismatch dependency
export VAGRANT_DISABLE_STRICT_DEPENDENCY_ENFORCEMENT=1
vagrant plugin install vagrant-libvirt