notes/computery_stuff/libvirt.md

23 lines
323 B
Markdown
Raw Normal View History

2021-07-04 12:17:53 +01:00
---
author: Alvie Rahman
date: \today
2021-08-23 15:25:05 +01:00
title: libvirt
2021-08-15 20:44:51 +01:00
tags: [ linux, virtualisation ]
2021-07-04 12:17:53 +01:00
---
# 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
```