Ubuntu – Android Studio not recognising KVM on Ubuntu 18.04

18.04android-studiokvm

KVM is required to run this AVD.
/dev/kvm device: permission denied.

Grant current user access to /dev/kvm

Best Answer

I had this mistake with Android Studio 3.0.1 on Ubuntu 18.04 when I run the emulator. You can try this answer. To add the user username to the kvm group, you could use:

sudo apt install qemu-kvm
sudo adduser $USER kvm

In my case it worked, albeit with a re-login required after the whole process.