Add more detailed instructions for the kvm driver

Users must properly install and configure libvirt + qemu

Solves issues such as #278
pull/327/head
Paul Bourke 2016-07-13 11:40:24 +01:00 committed by Paul Bourke
parent a1b7f461b9
commit cf53bb246a
1 changed files with 17 additions and 3 deletions

View File

@ -14,9 +14,23 @@ the host PATH:
#### KVM driver
Download the `docker-machine-driver-kvm` binary from
https://github.com/dhiltgen/docker-machine-kvm/releases and put it somewhere in
your PATH. Minikube is currently tested against `docker-machine-driver-kvm` 0.7.0.
Minikube is currently tested against `docker-machine-driver-kvm` 0.7.0.
From https://github.com/dhiltgen/docker-machine-kvm#quick-start-instructions:
```
$ sudo curl -L https://github.com/dhiltgen/docker-machine-kvm/releases/download/v0.7.0/docker-machine-driver-kvm -o /usr/local/bin/docker-machine-driver-kvm
$ sudo chmod +x /usr/local/bin/docker-machine-driver-kvm
# Install libvirt and qemu-kvm on your system, e.g.
$ sudo apt install libvirt-bin qemu-kvm
# Add yourself to the libvirtd group (may vary by linux distro) so you don't need to sudo
$ sudo usermod -a -G libvirtd $(whoami)
# Update your current session for the group change to take effect
$ newgrp libvirtd
```
#### xhyve driver