Vagrant

Vagrant

Vagrant is a tool for building and distributing development environments.

Development environments managed by Vagrant can run on local virtualized platforms such as VirtualBox or VMware, in the cloud via AWS or OpenStack, or in containers such as with Docker or raw LXC.

Vagrant provides the framework and configuration format to create and manage complete portable development environments. These development environments can live on your computer or in the cloud, and are portable between Windows, Mac OS X, and Linux.

http://railscasts.com/episodes/292-virtual-machines-with-vagrant?autoplay=true

—————————————

Setup

sudo apt-get install virtualbox

sudo apt-get install vagrant

vagrant init

————-

goto vagrant file name change

config.vm.box = “stockvm”

—————-

vagrant up

vagrant ssh

Your done with the vagrant creation.

Leave a comment