Merge pull request #827 from rothgar/fedora-kvm-driver

Added info for using KVM driver on Fedora
pull/680/merge
dlorenc 2016-11-18 08:19:10 -08:00 committed by GitHub
commit 8c64068aad
1 changed files with 4 additions and 1 deletions

View File

@ -23,9 +23,12 @@ $ sudo curl -L https://github.com/dhiltgen/docker-machine-kvm/releases/download/
$ sudo chmod +x /usr/local/bin/docker-machine-driver-kvm
# Install libvirt and qemu-kvm on your system, e.g.
# Debian/Ubuntu
$ sudo apt install libvirt-bin qemu-kvm
# Fedora/CentOS/RHEL
$ sudo yum install libvirt-daemon-kvm kvm
# Add yourself to the libvirtd group (may vary by linux distro) so you don't need to sudo
# Add yourself to the libvirtd group (use libvirt group for rpm based distros) so you don't need to sudo
$ sudo usermod -a -G libvirtd $(whoami)
# Update your current session for the group change to take effect