Skip to content

Commit

Permalink
Merge pull request #3894 from gyliu513/kvm-driver
Browse files Browse the repository at this point in the history
Highlight libvirtd for old distributions.
  • Loading branch information
tstromberg authored Mar 20, 2019
2 parents 5313c19 + 8f7cca3 commit 5074cc5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docs/drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,25 @@ 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.
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)
Then you will need to add yourself to `libvirt` group (older distributions may use `libvirtd` instead)

`sudo usermod -a -G libvirt $(whoami)`
```shell
sudo usermod -a -G libvirt $(whoami)
```

Then to join the group with your current user session:

`newgrp libvirt`
```shell
newgrp libvirt
```

Now install the driver:

Expand Down

0 comments on commit 5074cc5

Please sign in to comment.