et ici pour virt-manager :
https://fedorapeople.org/groups/docs/cookbook/#access-to-libvirt-without-root-privileges
Create polkit policy for libvirt:
touch /etc/polkit-1/localauthority/50-local.d/50-org.libvirt-group-access.pkla
Open the policy file in an editor.
$EDITOR /etc/polkit-1/localauthority/50-local.d/50-org.libvirt-group-access.pkla
Paste in the rule below.
[libvirt group Management Access]
Identity=unix-group:libvirt
Action=org.libvirt.unix.manage
ResultAny=yes
ResultInactive=yes
ResultActive=yes
Create group for users that can access libvirt without root privileges:
groupadd libvirt
Add your users to the special group:
usermod -a -G libvirt user_name
Je préfère cette façon car elle utilise un groupe spécial pour libvirt plutot que le groupe whell ( est en destiné plus au sudo )