Skip to content

Commit

Permalink
Merge pull request #3711 from Expire0/patch-1
Browse files Browse the repository at this point in the history
update libvirtd
  • Loading branch information
k8s-ci-robot committed Feb 27, 2019
2 parents 185570b + edff9ca commit 8d6a45e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ sudo apt install libvirt-bin libvirt-daemon-system qemu-kvm
sudo yum install libvirt-daemon-kvm qemu-kvm
```

Enable,start, and verify the libvirtd service has started.
```shell
sudo systemctl enable libvirtd.service
sudo systemctl start libvirtd.service
sudo systemctl status libvirtd.service
```


Then you will need to add yourself to libvirt group (older distributions may use libvirtd instead)

`sudo usermod -a -G libvirt $(whoami)`
Expand All @@ -51,6 +59,7 @@ curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-
&& sudo install docker-machine-driver-kvm2 /usr/local/bin/
```


NOTE: Ubuntu users on a release older than 18.04, or anyone experiencing [#3206: Error creating new host: dial tcp: missing address.](https://github.com/kubernetes/minikube/issues/3206) you will need to build your own driver until [#3689](https://github.com/kubernetes/minikube/issues/3689) is resolved. Building this binary will require [Go v1.11](https://golang.org/dl/) or newer to be installed.

```shell
Expand Down

0 comments on commit 8d6a45e

Please sign in to comment.