Skip to content

Commit

Permalink
Merge pull request #232 from hoatle/improvements/#215-ubuntu-setup-im…
Browse files Browse the repository at this point in the history
…provements-deps_#195

Improvements/#215 ubuntu setup improvements deps #195
  • Loading branch information
hoatle authored Feb 2, 2017
2 parents d2354b6 + c84c0c2 commit ddede73
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,27 +121,19 @@ Open the terminal window:
2. Install ``virtualbox`` (>=5.1):

Find the right installation version file at https://www.virtualbox.org/wiki/Linux_Downloads or
https://www.virtualbox.org/wiki/Download_Old_Builds

.. code-block:: bash
$ cd /tmp/
$ wget <download_link>
$ sudo dpkg -i <downloaded_file>
$ sudo apt-get install -f -y
$ sudo sh -c "echo 'deb http://download.virtualbox.org/virtualbox/debian '$(lsb_release -cs)' contrib non-free' > /etc/apt/sources.list.d/virtualbox.list" \
&& wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - \
&& sudo apt-get update && sudo apt-get install virtualbox-5.1 -y
3. Install ``vagrant`` (>=1.8.7, >=1.9.1):

Find the right installation version file at https://releases.hashicorp.com/vagrant/ or
https://www.vagrantup.com/downloads.html

.. code-block:: bash
$ cd /tmp/
$ wget <download_link>
$ sudo dpkg -i <downloaded_file>
$ sudo apt-get install -f -y
$ version=1.9.1 && cd /tmp \
&& wget $(if [ `uname -m` == "x86_64" ]; then echo "https://releases.hashicorp.com/vagrant/$version/vagrant_${version}_x86_64.deb"; else echo "https://releases.hashicorp.com/vagrant/$version/vagrant_${version}_i686.deb"; fi;) \
&& sudo dpkg -i vagrant_${version}* && rm vagrant_${version}* && cd --
Next: :ref:`teracy-dev Git Clone and Vagrant Up <teracy-dev-git-clone-and-vagrant-up>`

Expand Down

0 comments on commit ddede73

Please sign in to comment.