Improve Fedora installation procedure (#1101)

This commit is contained in:
Petr Ruzicka 2020-05-10 15:54:56 +02:00 committed by GitHub
parent f00bc0eaae
commit d75c9ffda3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ yum install qemu libvirt libvirt-devel ruby-devel gcc qemu-kvm
* Fedora 22 and up: * Fedora 22 and up:
```shell ```shell
dnf -y install qemu libvirt libvirt-devel ruby-devel gcc dnf install -y gcc libvirt libvirt-devel libxml2-devel make ruby-devel
``` ```
* OpenSUSE leap 15.1: * OpenSUSE leap 15.1:
@ -155,8 +155,16 @@ pacman -S vagrant
Now you're ready to install vagrant-libvirt using standard [Vagrant Now you're ready to install vagrant-libvirt using standard [Vagrant
plugin](http://docs.vagrantup.com/v2/plugins/usage.html) installation methods. plugin](http://docs.vagrantup.com/v2/plugins/usage.html) installation methods.
For some distributions you will need to specify `CONFIGURE_ARGS` variable before
running `vagrant plugin install`:
* Fedora 32 + upstream Vagrant:
```shell ```shell
$ vagrant plugin install vagrant-libvirt export CONFIGURE_ARGS="with-libvirt-include=/usr/include/libvirt with-libvirt-lib=/usr/lib64"
```
```shell
vagrant plugin install vagrant-libvirt
``` ```
### Possible problems with plugin installation on Linux ### Possible problems with plugin installation on Linux