Setup vagrant » Historie » Version 1
Jeremias Keihsler, 13.01.2017 08:45
| 1 | 1 | Jeremias Keihsler | h1. Install vagrant |
|---|---|---|---|
| 2 | |||
| 3 | h2. Requirements |
||
| 4 | |||
| 5 | To install unison you will need the following: |
||
| 6 | * a installed and supported operating system (e.g. CentOS 7.x) |
||
| 7 | * root-access |
||
| 8 | * access to https://releases.hashicorp.com |
||
| 9 | * a fast internet connection |
||
| 10 | |||
| 11 | h2. Preliminary note |
||
| 12 | |||
| 13 | you may consult the official homepage |
||
| 14 | * [[https://www.vagrantup.com/]] |
||
| 15 | and have a look for CentOS-boxes at |
||
| 16 | * [[https://seven.centos.org/2016/10/updated-centos-vagrant-images-available-v1609-01/]] |
||
| 17 | |||
| 18 | installation method via rubygems is depreciated as described in [[https://www.vagrantup.com/docs/installation/]] |
||
| 19 | this is reflected in the latest changes of this document |
||
| 20 | |||
| 21 | h2. Install |
||
| 22 | |||
| 23 | As of 2016-10-18 vagrant isn't listed in any CentOS-7 repository we download the rpm directly from the homepage and install it via yum |
||
| 24 | |||
| 25 | download the latest rpm (as of 2016-10-18 version 1.8.6) |
||
| 26 | <pre><code class="bash"> |
||
| 27 | cd ~ |
||
| 28 | wget https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6_x86_64.rpm |
||
| 29 | </code></pre> |
||
| 30 | <pre><code class="bash"> |
||
| 31 | yum install ~/vagrant_1.8.6_x86_64.rpm |
||
| 32 | </code></pre> |
||
| 33 | |||
| 34 | h2. Test Vagrant |
||
| 35 | |||
| 36 | <pre><code class="bash"> |
||
| 37 | vagrant up |
||
| 38 | </code></pre> |