John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1 | .. _installingVboxVagrant: |
| 2 | |
| 3 | .. toctree:: |
| 4 | |
| 5 | Installing Vbox and Vagrant |
| 6 | =========================== |
| 7 | |
| 8 | Installing VirtualBox |
| 9 | _____________________ |
| 10 | |
| 11 | First download VirtualBox, which is virtualization software for creating VM's. |
| 12 | |
| 13 | If you're on CentOS, follow the `steps here <https://wiki.centos.org/HowTos/Virtualization/VirtualBox>`_. |
| 14 | |
| 15 | |
| 16 | If you're on Ubuntu, perform: |
| 17 | |
John DeNisco | a14c166 | 2018-08-01 10:38:23 -0400 | [diff] [blame] | 18 | .. code-block:: shell |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 19 | |
| 20 | $ sudo apt-get install virtualbox |
| 21 | |
| 22 | Installing Vagrant |
| 23 | __________________ |
| 24 | |
| 25 | Here we are on a 64-bit version of CentOS, downloading and installing Vagrant 2.1.2: |
| 26 | |
John DeNisco | a14c166 | 2018-08-01 10:38:23 -0400 | [diff] [blame] | 27 | .. code-block:: shell |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 28 | |
| 29 | $ yum -y install https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.rpm |
| 30 | |
| 31 | This is a similar command, but on a 64-bit version of Debian: |
| 32 | |
John DeNisco | a14c166 | 2018-08-01 10:38:23 -0400 | [diff] [blame] | 33 | .. code-block:: shell |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 34 | |
| 35 | $ sudo apt-get install https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.deb |
| 36 | |
| 37 | |
| 38 | If 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. |