blob: 018ce6cfb53bf15d8ff4da0b18ea48b3baaef325 [file] [log] [blame]
John DeNisco06dcd452018-07-26 12:45:10 -04001.. _installingVboxVagrant:
2
3.. toctree::
4
5Installing Vbox and Vagrant
6===========================
7
8Installing VirtualBox
9_____________________
10
11First download VirtualBox, which is virtualization software for creating VM's.
12
13If you're on CentOS, follow the `steps here <https://wiki.centos.org/HowTos/Virtualization/VirtualBox>`_.
14
15
16If you're on Ubuntu, perform:
17
John DeNiscoa14c1662018-08-01 10:38:23 -040018.. code-block:: shell
John DeNisco06dcd452018-07-26 12:45:10 -040019
20 $ sudo apt-get install virtualbox
21
22Installing Vagrant
23__________________
24
25Here we are on a 64-bit version of CentOS, downloading and installing Vagrant 2.1.2:
26
John DeNiscoa14c1662018-08-01 10:38:23 -040027.. code-block:: shell
John DeNisco06dcd452018-07-26 12:45:10 -040028
29 $ yum -y install https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.rpm
30
31This is a similar command, but on a 64-bit version of Debian:
32
John DeNiscoa14c1662018-08-01 10:38:23 -040033.. code-block:: shell
John DeNisco06dcd452018-07-26 12:45:10 -040034
35 $ sudo apt-get install https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.deb
36
37
38If you want to download a newer version of Vagrant or one specific to your OS and architecture, go to the Vagrant `download page <https://www.vagrantup.com/downloads.html>`_, right-click and copy the link address for your specified version, and replace the above install command for your respective OS and architechure.