add groups in qemu

This commit is contained in:
night0721 2023-11-09 23:57:23 +00:00
parent 0e40de0ddb
commit df68da8629
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,6 @@
--- ---
title: "How to solve bluetooth issues in Arch Linux" title: "How to solve bluetooth issues in Arch Linux"
date: 2023-11-09T22:30:00+00:00 date: 2023-11-09T22:30:00+00:00
description: "How I solved my bluetooth issues by using pipewire"
--- ---
Recently I wanted to connect my earphones via bluetooth to my Arch Linux but I found out it just either could not connect or repeating connect and disconnect. Not many solutions from the internet solve my issue, though. But this one worked, so to share the solution to you guys. Note: It is for someone who has been using pulseaudio. Recently I wanted to connect my earphones via bluetooth to my Arch Linux but I found out it just either could not connect or repeating connect and disconnect. Not many solutions from the internet solve my issue, though. But this one worked, so to share the solution to you guys. Note: It is for someone who has been using pulseaudio.

View file

@ -19,7 +19,7 @@ If not, go to BIOS and enable it
# Download the required packages # Download the required packages
yay -S qemu-full libvirt virt-manager virt-viewer bridge-utils yay -S qemu-full libvirt virt-manager virt-viewer bridge-utils
# Add yourself into groups so to solve permission issues # Add yourself into groups so to solve permission issues
usermod -aG libvirt-qemu,libvirt,qemu [your username] usermod -aG libvirt,kvm,libvirt-qemu,input,disk,audio,video [your username]
# Enable systemd service # Enable systemd service
systemctl enable libvirtd.socket systemctl enable libvirtd.socket
``` ```