blob: 326312899b401554afcfde0399b889c6a675f53b [file] [log] [blame]
John DeNisco06dcd452018-07-26 12:45:10 -04001.. _installingVboxVagrant:
2
John DeNisco06dcd452018-07-26 12:45:10 -04003Installing Vbox and Vagrant
4===========================
5
6Installing VirtualBox
7_____________________
8
9First download VirtualBox, which is virtualization software for creating VM's.
10
11If you're on CentOS, follow the `steps here <https://wiki.centos.org/HowTos/Virtualization/VirtualBox>`_.
12
13
14If you're on Ubuntu, perform:
15
John DeNiscoa14c1662018-08-01 10:38:23 -040016.. code-block:: shell
John DeNisco06dcd452018-07-26 12:45:10 -040017
18 $ sudo apt-get install virtualbox
19
John DeNiscoc4c72d22018-08-16 13:50:02 -040020If you want to download a newer version of Virtual Box or one specific to your OS and architecture, go to the `Virtual Box download page <https://www.virtualbox.org/wiki/Downloads>`_.
21
John DeNisco06dcd452018-07-26 12:45:10 -040022Installing 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
John DeNiscoc4c72d22018-08-16 13:50:02 -040038If 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>`_.