2021-07-04 11:17:53 +00:00
|
|
|
---
|
|
|
|
author: Alvie Rahman
|
|
|
|
date: \today
|
|
|
|
title: libvirt notes
|
|
|
|
---
|
|
|
|
|
|
|
|
# issues
|
|
|
|
|
|
|
|
## default network is not running
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# virsh net-start default
|
|
|
|
```
|
2021-07-06 15:28:32 +00:00
|
|
|
|
|
|
|
## `no polkit agent available to authenticate action 'org.libvirt.unix.manage'`
|
|
|
|
|
|
|
|
add user to `libvirt` group
|
|
|
|
|
|
|
|
```bash
|
|
|
|
usermod -a -G libvirt user
|
|
|
|
```
|