AVD not generated with Android Studio

I am working on Ubuntu 14.04, 64 bit system. I am trying to create an AVD using AVD Manager for Android Studio, but cannot do it. The procedure seems to be quite simple, so I don't know where I am going wrong. Let me look at a specific problem. So, I select AVD Manager (Tools-> Android-> AVD Manager) from Android Studio and the following screen appears. Check the image here

Next, I select the device, system image, skin type, etc. In this case, it is Google Nexus 5, API level 21 and x86 system image. Check image here

Finally, all the features have been installed, I choose "Done" and nothing happens. I go back to the screen shown in the first shot and there is no new device. I installed KVM according to the instructions in the Ubuntu Official Documentation (I can't post the link as I don't have 10 reputation points) and the installation was successful. I tried looking for this issue, but I don't seem to be getting any answers. What could be the problem? Thank.

+3


source to share


1 answer


After looking at it, I think you haven't installed KVM correctly. Try the following:

Use the below command to check if KVM is installed on the machine or not,

kvm-ok 

      

Output:

INFO: /dev/kvm exists
KVM acceleration can be used

      

The output as shown below is



INFO: your processor does not support KVM extensions KVM acceleration cannot be used

In this scenario, you need to install KVM using the following command:

sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils

      

This worked for me

Greetings

0


source







All Articles