原贴

https://askubuntu.com/questions/1050621/kvm-is-required-to-run-this-avd

Check the ownership of /dev/kvm

ls -al /dev/kvm
Check which users are in the kvm group

grep kvm /etc/group
Output from the above command

kvm:x:some_number:
If there is nothing rightwards of the final :, there are no users in the kvm group.

To add the user your_name to the kvm group

sudo adduser your_name kvm
which adds the user to the group, and check once again with grep kvm /etc/group.

A restart may be required for the permissions to take effect.

 

相关文章:

  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2021-09-12
  • 2022-01-25
猜你喜欢
  • 2021-08-29
  • 2021-11-01
  • 2021-12-09
  • 2022-12-23
  • 2022-01-30
  • 2022-12-23
相关资源
相似解决方案