Debian Vagrant Quickstart

Quickly run a Debian VM, for developing, testing, playing in only 4 steps.

If you want to use the VirtualBox provider, install VirtualBox following the information from the VirtualBox, or download and install it from https://www.virtualbox.org/.

Then install Vagrant itself.

apt install vagrant

Create a vagrant initial configuration in current dir.

vagrant init debian/bullseye64

Download the debian disk image and start it.

vagrant up

Login in your new debian system.

vagrant ssh

Try a command as root (Once logged, you can execute any administrative command with sudo without password).

sudo whoami
root