#Download Vagrant latest version(2015.08.26)
$ wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.7.4_x86_64.deb
# Install Vagrant
$ sudo dpkg -i vagrant_1.7.4_x86_64.deb
#version check
$ vagrant --version
Vagrant 1.7.4
#VirtualBox install
$ sudo apt-get install virtualbox
# Install ubuntu 14.04 on Virtualbox using vagrant
You can find vagrant box on the following: http://www.vagrantbox.es/
ex) $ vagrant box add {title} {url}
$ vagrant box add ubuntu14.04 https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box
# After initialization, Vagrantfile is created and the information in the file configuration can set up OS automatically
$ vagrant init ubuntu14.04
# Execute OS
$ vagrant up
# Shutdown OS
$ vagrant halt or vagrant suspend
# Delete OS
$ vagrant destroy
# Apply provisioning
$ vagrant provision
# Access server
$ vagrant ssh
# Setting Vagrant provisioning