notes/computery_stuff/libvirt.md

26 lines
365 B
Markdown
Executable File

---
author: Alvie Rahman
date: \today
title: libvirt
tags:
- linux
- virtualisation
uuid: 62c2f458-f701-4075-8e12-d9b9a59efd1f
---
# 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
```