KVM is required to run this AVD. Unknown Error! Please file a bug against Android Studio

后端 未结 4 1003
栀梦
栀梦 2021-02-13 12:11

Operating System : CentOS Linux 7
Android Studios version : 2.3.3

Result of the command: lsmod | grep kvm

My computer supports virtuali

相关标签:
4条回答
  • 2021-02-13 12:49

    In my case the error was because the user has not enough permission to /dev/kvm. So the solution is giving permission,i.e.,

    chmod 777 /dev/kvm
    
    0 讨论(0)
  • 2021-02-13 12:51

    Changed permissions in the /home/folder/Android/Sdk/emulator/ folder

    chmod 777 -R /home/folder/Android/Sdk/emulator/

    0 讨论(0)
  • 2021-02-13 12:59

    You need to be part of the kvm group

    Try this:

    sudo adduser $USER kvm
    

    Then relaunch android studio or unlog / relog user

    0 讨论(0)
  • 2021-02-13 13:05

    I also had this problem, and was able to fix it by using:

    sudo chmod 777 /dev/kvm
    
    0 讨论(0)
提交回复
热议问题