In this post we will install vagrant , a tool to set up a development and testing environment very quickly!! Tools : To manage VM VirtualBox Vagrant First Install Vagrant & Virtual Box in your machine then , go to your command line CMD (Widows) create a folder called vagrant for ex : mkdir vagrant cd vagrant vagrant init edit the vagrantfile in your favorate text editor, delete all the previous content fill it with this sample code : ps : set the syntax to Ruby Vagrant.configure("2") do |o| o.vm.box = "newbox" o.vm.box_url = "http://tag1consulting.com/files/centos-5.9-x86-64-minimal.box" o.vm.synced_folder "./app","/var/www/", create:true o.vm.network :private_network ,ip: "192.168.55.55" o.vm.provision :shell,:path => "setup.sh" end save the file and go and make a vagrant up in your folder - cmd - it's gone take a time when it finished g...