vagrant init # Initialize Vagrant by creating a .vagrant directory and the "Vagrantfile" file (configuration template).
vagrant init ubuntu / trust # Initialize Vagrant and install a ubuntu / trusty64 VM (It can be installed with other commands as well).
vagrant up # Start a VM, if it is the first see it will provision it.
vagrant resume # Activate a previously suspended VM, it can also be done with "vagrant up".
vagrant provision # Provision a VM again according to the configuration.
vagrant reload # Restarts (loading the Vagrantfile file). Add - provision to provision.
vagrant ssh # Connect using ssh (it must be in the same directory).