Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: [HELP] Virt Manager not detecting Qemu/KVM (Read 2133 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

[HELP] Virt Manager not detecting Qemu/KVM

This is newly Installed Artix Linux with Openrc.
I installed
Code: [Select]
qemu virtmanager libvirt-openrc

libvirtd is running
But Virt Manager is not showing Qemu/KVM


user is added to following groups
Code: [Select]
libvirt video kvm input audio wheel

I tried to run from terminal but I could  not get any error.
Create problems which don't have solution

Re: [HELP] Virt Manager not detecting Qemu/KVM

Reply #1
Did you load the KVM module, or reboot?


Re: [HELP] Virt Manager not detecting Qemu/KVM

Reply #3
I don't know what is wrong with my installation, I tried on Virtual Machine Kvm is detected by Virt Manager.
Create problems which don't have solution

Re: [HELP] Virt Manager not detecting Qemu/KVM

Reply #4
I don't know what is wrong with my installation, I tried on Virtual Machine Kvm is detected by Virt Manager.
I will be reinstalling
Close this Topic
Create problems which don't have solution

Re: [HELP] Virt Manager not detecting Qemu/KVM

Reply #5
In case if someone need to install KVM on Artix Linux.

I just successfully installed KVM on my Artix Linux by installing packages below.

Code: [Select]
 sudo pacman -S qemu virt-manager libvirt libvirt-openrc dnsmasq virt-viewer vde2 bridge-utils ebtables libguestfs openbsd-netcat

Note:

* Some packages are available on the Arch repository, so you can enable the Arch repository.
* The ebtables is part of the "iptables-nft", which will replace your iptables package.

After you installed all packages, you can start the "libvirtd" and "dnsmasq" service.

Code: [Select]
rc-service dnsmasq start
rc-service libvirtd start

The "dnsmasq" service by default will be running on port "53". So if you have other application running on that port, you can change the port like "5353" on the dnsmasq configuration "/etc/dnsmasq.conf".

Good luck  :D