Creating and Login into Virtual Machine using Vagrant and VirtualBox

Author: Al-mamun Sarkar Date: 2020-04-13 10:29:04

Creating and login into Virtual Machine using Vagrant and VirtualBox. The following command shows how to create a Ubuntu virtual machine using Vagrant and VirtualBox.

Available Box list:

https://app.vagrantup.com/boxes/search

 

Show box list:

vagrant box list

 

Create Ubuntu 18 box:

vagrant init ubuntu/bionic64

 

Running Inatialized machine:

vagrant up

 

Log into VM Box:

vagrant ssh

 

Get out form VM Box:

exit