2021-07-04 11:17:53 +00:00
|
|
|
---
|
|
|
|
author: Alvie Rahman
|
|
|
|
date: \today
|
2021-08-23 14:25:05 +00:00
|
|
|
title: libvirt
|
2022-03-02 01:43:54 +00:00
|
|
|
tags:
|
|
|
|
- linux
|
|
|
|
- virtualisation
|
|
|
|
uuid: 62c2f458-f701-4075-8e12-d9b9a59efd1f
|
2021-07-04 11:17:53 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# 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
|
|
|
|
```
|