3

When I open virt-manager GUI it doesn't show list of KVMs but virsh does. how can fix it?

Zim3r
  • 1,384
  • 5
  • 23
  • 45

4 Answers4

6

Check the output of virsh uri. If it returns qemu:///session, but you're using a qemu:///system connection in Virt-Manager, you found the cause.

In order to fix it, you should either create a "QEMU/KVM user session" connection in virt-manager, or run virsh define ~/.config/libvirt/qemu/<filename>.xml as root. This will create the xml definition under /etc/libvirt/qemu which will then be picked up by virt-manager.

Marc.2377
  • 207
  • 2
  • 14
  • 2
    To add "QEMU/KVM user session" in virt-manager, click File > Add Connection..., under "Hypervisor" select "QEMU/KVM user session", check "Autoconnect", and click "Connect". – Garrett Hyde Jan 16 '20 at 17:56
2

If you see a connection for localhost (QEMU) listed, double click it.

If you don't see any connections listed, go to File > Add Connection, leave all the defaults set as they are, then click Add.

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940
0

Another issue could be causing this is that you are using the terminal by user different than the one being used by virtmanager, for example, if your virt manager is using root and you are using your machine's terminal with user admin without sudo, you will get different result, most probably empty list since the system never used your another user for VMs.

Eng7
  • 107
  • 6
-1

Try restarting you Machine. and see what's the result.

Zim3r
  • 1,384
  • 5
  • 23
  • 45