notes/libvirt.md
2021-09-01 13:23:54 +01:00

23 lines
323 B
Markdown
Executable File

---
author: Alvie Rahman
date: \today
title: libvirt
tags: [ linux, virtualisation ]
---
# issues
## default network is not running
```bash
# virsh net-start default
```
## `no polkit agent available to authenticate action 'org.libvirt.unix.manage'`
add user to `libvirt` group
```bash
usermod -a -G libvirt user
```