Vagrant doc updates

Updated vagrant doc to include

- package installs for CentOS
- add git and gcc required during install

Change-Id: Ic52350fb16f69cde87bd1a8177d4a76ef7fd4f5e
This commit is contained in:
Swapnil Kulkarni (coolsvap) 2016-08-10 09:36:18 +05:30
parent 8f90e62b48
commit 61e74c9273
1 changed files with 10 additions and 4 deletions

View File

@ -39,13 +39,19 @@ Start by downloading and installing the Vagrant package for the distro of
choice. Various downloads can be found at the `Vagrant downloads
<https://www.vagrantup.com/downloads.html>`__.
On Fedora 22 it is as easy as::
Install required dependencies as follows:
sudo dnf install vagrant ruby-devel libvirt-devel libvirt-python
On CentOS 7::
On Ubuntu 14.04 it is as easy as::
sudo yum install vagrant ruby-devel libvirt-devel libvirt-python gcc git
sudo apt-get install vagrant ruby-dev ruby-libvirt python-libvirt libvirt-dev nfs-kernel-server
On Fedora 22 or later::
sudo dnf install vagrant ruby-devel libvirt-devel libvirt-python gcc git
On Ubuntu 14.04 or later::
sudo apt-get install vagrant ruby-dev ruby-libvirt python-libvirt libvirt-dev nfs-kernel-server gcc git
.. note:: Many distros ship outdated versions of Vagrant by default. When in
doubt, always install the latest from the downloads page above.