KVM is not installed on this machine (/dev/kvm is missing)












60















I'm using Ubuntu 14.04. I recently installed Android Studio, but whenever I try to run a Hello World app, I get this error:



/home/praveen/Android/Sdk/tools/emulator -avd Nexus_6_API_21 -netspeed full -netdelay none
emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure KVM is properly installed and usable.
CPU acceleration status: KVM is not installed on this machine (/dev/kvm is missing).









share|improve this question

























  • maybe u have a 32 bit system ,, try upgrading it n then try ... android emulator also requires 4gb ram and higher .

    – yunus
    Nov 18 '17 at 19:20
















60















I'm using Ubuntu 14.04. I recently installed Android Studio, but whenever I try to run a Hello World app, I get this error:



/home/praveen/Android/Sdk/tools/emulator -avd Nexus_6_API_21 -netspeed full -netdelay none
emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure KVM is properly installed and usable.
CPU acceleration status: KVM is not installed on this machine (/dev/kvm is missing).









share|improve this question

























  • maybe u have a 32 bit system ,, try upgrading it n then try ... android emulator also requires 4gb ram and higher .

    – yunus
    Nov 18 '17 at 19:20














60












60








60


9






I'm using Ubuntu 14.04. I recently installed Android Studio, but whenever I try to run a Hello World app, I get this error:



/home/praveen/Android/Sdk/tools/emulator -avd Nexus_6_API_21 -netspeed full -netdelay none
emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure KVM is properly installed and usable.
CPU acceleration status: KVM is not installed on this machine (/dev/kvm is missing).









share|improve this question
















I'm using Ubuntu 14.04. I recently installed Android Studio, but whenever I try to run a Hello World app, I get this error:



/home/praveen/Android/Sdk/tools/emulator -avd Nexus_6_API_21 -netspeed full -netdelay none
emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure KVM is properly installed and usable.
CPU acceleration status: KVM is not installed on this machine (/dev/kvm is missing).






kvm android-studio android-sdk






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 29 '16 at 4:35









Duncan X Simpson

373316




373316










asked Dec 24 '14 at 7:12









praveen kumarpraveen kumar

476256




476256













  • maybe u have a 32 bit system ,, try upgrading it n then try ... android emulator also requires 4gb ram and higher .

    – yunus
    Nov 18 '17 at 19:20



















  • maybe u have a 32 bit system ,, try upgrading it n then try ... android emulator also requires 4gb ram and higher .

    – yunus
    Nov 18 '17 at 19:20

















maybe u have a 32 bit system ,, try upgrading it n then try ... android emulator also requires 4gb ram and higher .

– yunus
Nov 18 '17 at 19:20





maybe u have a 32 bit system ,, try upgrading it n then try ... android emulator also requires 4gb ram and higher .

– yunus
Nov 18 '17 at 19:20










7 Answers
7






active

oldest

votes


















33














Either your CPU does not support virtualization, or it is disabled in the bios. Go into your bios and see if you can find a setting to enable it.






share|improve this answer
























  • I am having this error on a Mac. Solution isn't applicable to Macs because they have no BIOS. What to do then?

    – IgorGanapolsky
    Jul 6 '17 at 13:21











  • Go into your bios and see if you can find a setting to enable it - What is the process to do that ????

    – B.shruti
    Aug 1 '17 at 5:11











  • How to go into bios?

    – Riddhi
    May 9 '18 at 9:11











  • @Riddhi, it depends on your computer. Usually hit DEL or F12 or F1 when it says.

    – psusi
    May 9 '18 at 16:04



















63














Use the below command to check whether the KVM is installed in the machine or not,



kvm-ok 


Output:



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


Output like the below means,



INFO: Your CPU does not support KVM extensions
KVM acceleration can NOT be used


In this scenario need to install KVM using the below command,



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


Hope this helps.






share|improve this answer



















  • 2





    praveen@praveen-Lenovo-B590:~$ kvm-ok INFO: /dev/kvm does not exist HINT: sudo modprobe kvm_intel INFO: For more detailed results, you should run this as root HINT: sudo /usr/sbin/kvm-ok praveen@praveen-Lenovo-B590:~$

    – praveen kumar
    Dec 24 '14 at 14:37






  • 12





    sudo apt-get install cpu-checker for kvm-ok.

    – Wtower
    Feb 3 '16 at 10:24











  • @vembutech after executing command kvm-ok I got an output that- "does not exist". So, I've installed it using the above mentioned command. It has been downloaded. Last line is Processing triggers for ureadahead (0.100.0-16) ... now I run the kvm-ok command again. But again it says "does not exist"

    – Prabs
    Feb 8 '16 at 12:24





















14














HP-EliteBook-820-G1:/opt/android-studio/bin$ sudo /usr/sbin/kvm-ok
INFO: /dev/kvm does not exist
HINT: sudo modprobe kvm_intel
INFO: Your CPU supports KVM extensions
INFO: KVM (vmx) is disabled by your BIOS
HINT: Enter your BIOS setup and enable Virtualization Technology (VT),
and then hard poweroff/poweron your system
KVM acceleration can NOT be used


Affter bios setting, I used the following command



sudo modprobe kvm_intel


Now is ok






share|improve this answer


























  • this solution worked perfect for my Ubuntu 14.0

    – Tarun
    Jul 4 '16 at 10:02











  • this fixed it for me on Ubuntu 12.04 64Bit

    – SpamBot
    Aug 26 '16 at 14:58



















8














Worked on Ubuntu 15.04, Intel's CPU




  1. sudo apt-get install qemu-kvm

  2. Enable Virtualization Technology in BIOS

  3. sudo kvm-ok






share|improve this answer































    3














    I had tried the command,



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


    but unfortunately it didn't work. Then I changed owner (rohanverma is user in my case) by using,



    sudo chown rohanverma:rohanverma -R /dev/kvm


    which worked for me.






    share|improve this answer































      2














      I saw the same error. But I'm running Ubuntu on the VMware. Ubuntu is installed on the VMware. So the steps to resolve the problem is different from pure ubuntu machine. The complains went away with the following steps:




      1. sudo apt install cpu-checker

      2. In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.

      3. sudo kvm-ok






      share|improve this answer

































        0














        Close any other hypervisors before starting Android Studio. I received the same error message when I tried to run an Android Virtual Device and had a Virtual Box VM running at the same time.






        share|improve this answer





















        • 1





          This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review

          – earthmeLon
          Jan 28 '17 at 0:37






        • 2





          @earthmeLon I fixed it.

          – wjandrea
          Jan 28 '17 at 2:07










        protected by Community Nov 18 '17 at 20:17



        Thank you for your interest in this question.
        Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



        Would you like to answer one of these unanswered questions instead?














        7 Answers
        7






        active

        oldest

        votes








        7 Answers
        7






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        33














        Either your CPU does not support virtualization, or it is disabled in the bios. Go into your bios and see if you can find a setting to enable it.






        share|improve this answer
























        • I am having this error on a Mac. Solution isn't applicable to Macs because they have no BIOS. What to do then?

          – IgorGanapolsky
          Jul 6 '17 at 13:21











        • Go into your bios and see if you can find a setting to enable it - What is the process to do that ????

          – B.shruti
          Aug 1 '17 at 5:11











        • How to go into bios?

          – Riddhi
          May 9 '18 at 9:11











        • @Riddhi, it depends on your computer. Usually hit DEL or F12 or F1 when it says.

          – psusi
          May 9 '18 at 16:04
















        33














        Either your CPU does not support virtualization, or it is disabled in the bios. Go into your bios and see if you can find a setting to enable it.






        share|improve this answer
























        • I am having this error on a Mac. Solution isn't applicable to Macs because they have no BIOS. What to do then?

          – IgorGanapolsky
          Jul 6 '17 at 13:21











        • Go into your bios and see if you can find a setting to enable it - What is the process to do that ????

          – B.shruti
          Aug 1 '17 at 5:11











        • How to go into bios?

          – Riddhi
          May 9 '18 at 9:11











        • @Riddhi, it depends on your computer. Usually hit DEL or F12 or F1 when it says.

          – psusi
          May 9 '18 at 16:04














        33












        33








        33







        Either your CPU does not support virtualization, or it is disabled in the bios. Go into your bios and see if you can find a setting to enable it.






        share|improve this answer













        Either your CPU does not support virtualization, or it is disabled in the bios. Go into your bios and see if you can find a setting to enable it.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 24 '14 at 15:37









        psusipsusi

        31.3k15089




        31.3k15089













        • I am having this error on a Mac. Solution isn't applicable to Macs because they have no BIOS. What to do then?

          – IgorGanapolsky
          Jul 6 '17 at 13:21











        • Go into your bios and see if you can find a setting to enable it - What is the process to do that ????

          – B.shruti
          Aug 1 '17 at 5:11











        • How to go into bios?

          – Riddhi
          May 9 '18 at 9:11











        • @Riddhi, it depends on your computer. Usually hit DEL or F12 or F1 when it says.

          – psusi
          May 9 '18 at 16:04



















        • I am having this error on a Mac. Solution isn't applicable to Macs because they have no BIOS. What to do then?

          – IgorGanapolsky
          Jul 6 '17 at 13:21











        • Go into your bios and see if you can find a setting to enable it - What is the process to do that ????

          – B.shruti
          Aug 1 '17 at 5:11











        • How to go into bios?

          – Riddhi
          May 9 '18 at 9:11











        • @Riddhi, it depends on your computer. Usually hit DEL or F12 or F1 when it says.

          – psusi
          May 9 '18 at 16:04

















        I am having this error on a Mac. Solution isn't applicable to Macs because they have no BIOS. What to do then?

        – IgorGanapolsky
        Jul 6 '17 at 13:21





        I am having this error on a Mac. Solution isn't applicable to Macs because they have no BIOS. What to do then?

        – IgorGanapolsky
        Jul 6 '17 at 13:21













        Go into your bios and see if you can find a setting to enable it - What is the process to do that ????

        – B.shruti
        Aug 1 '17 at 5:11





        Go into your bios and see if you can find a setting to enable it - What is the process to do that ????

        – B.shruti
        Aug 1 '17 at 5:11













        How to go into bios?

        – Riddhi
        May 9 '18 at 9:11





        How to go into bios?

        – Riddhi
        May 9 '18 at 9:11













        @Riddhi, it depends on your computer. Usually hit DEL or F12 or F1 when it says.

        – psusi
        May 9 '18 at 16:04





        @Riddhi, it depends on your computer. Usually hit DEL or F12 or F1 when it says.

        – psusi
        May 9 '18 at 16:04













        63














        Use the below command to check whether the KVM is installed in the machine or not,



        kvm-ok 


        Output:



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


        Output like the below means,



        INFO: Your CPU does not support KVM extensions
        KVM acceleration can NOT be used


        In this scenario need to install KVM using the below command,



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


        Hope this helps.






        share|improve this answer



















        • 2





          praveen@praveen-Lenovo-B590:~$ kvm-ok INFO: /dev/kvm does not exist HINT: sudo modprobe kvm_intel INFO: For more detailed results, you should run this as root HINT: sudo /usr/sbin/kvm-ok praveen@praveen-Lenovo-B590:~$

          – praveen kumar
          Dec 24 '14 at 14:37






        • 12





          sudo apt-get install cpu-checker for kvm-ok.

          – Wtower
          Feb 3 '16 at 10:24











        • @vembutech after executing command kvm-ok I got an output that- "does not exist". So, I've installed it using the above mentioned command. It has been downloaded. Last line is Processing triggers for ureadahead (0.100.0-16) ... now I run the kvm-ok command again. But again it says "does not exist"

          – Prabs
          Feb 8 '16 at 12:24


















        63














        Use the below command to check whether the KVM is installed in the machine or not,



        kvm-ok 


        Output:



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


        Output like the below means,



        INFO: Your CPU does not support KVM extensions
        KVM acceleration can NOT be used


        In this scenario need to install KVM using the below command,



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


        Hope this helps.






        share|improve this answer



















        • 2





          praveen@praveen-Lenovo-B590:~$ kvm-ok INFO: /dev/kvm does not exist HINT: sudo modprobe kvm_intel INFO: For more detailed results, you should run this as root HINT: sudo /usr/sbin/kvm-ok praveen@praveen-Lenovo-B590:~$

          – praveen kumar
          Dec 24 '14 at 14:37






        • 12





          sudo apt-get install cpu-checker for kvm-ok.

          – Wtower
          Feb 3 '16 at 10:24











        • @vembutech after executing command kvm-ok I got an output that- "does not exist". So, I've installed it using the above mentioned command. It has been downloaded. Last line is Processing triggers for ureadahead (0.100.0-16) ... now I run the kvm-ok command again. But again it says "does not exist"

          – Prabs
          Feb 8 '16 at 12:24
















        63












        63








        63







        Use the below command to check whether the KVM is installed in the machine or not,



        kvm-ok 


        Output:



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


        Output like the below means,



        INFO: Your CPU does not support KVM extensions
        KVM acceleration can NOT be used


        In this scenario need to install KVM using the below command,



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


        Hope this helps.






        share|improve this answer













        Use the below command to check whether the KVM is installed in the machine or not,



        kvm-ok 


        Output:



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


        Output like the below means,



        INFO: Your CPU does not support KVM extensions
        KVM acceleration can NOT be used


        In this scenario need to install KVM using the below command,



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


        Hope this helps.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 24 '14 at 8:56









        vembutechvembutech

        2,694169




        2,694169








        • 2





          praveen@praveen-Lenovo-B590:~$ kvm-ok INFO: /dev/kvm does not exist HINT: sudo modprobe kvm_intel INFO: For more detailed results, you should run this as root HINT: sudo /usr/sbin/kvm-ok praveen@praveen-Lenovo-B590:~$

          – praveen kumar
          Dec 24 '14 at 14:37






        • 12





          sudo apt-get install cpu-checker for kvm-ok.

          – Wtower
          Feb 3 '16 at 10:24











        • @vembutech after executing command kvm-ok I got an output that- "does not exist". So, I've installed it using the above mentioned command. It has been downloaded. Last line is Processing triggers for ureadahead (0.100.0-16) ... now I run the kvm-ok command again. But again it says "does not exist"

          – Prabs
          Feb 8 '16 at 12:24
















        • 2





          praveen@praveen-Lenovo-B590:~$ kvm-ok INFO: /dev/kvm does not exist HINT: sudo modprobe kvm_intel INFO: For more detailed results, you should run this as root HINT: sudo /usr/sbin/kvm-ok praveen@praveen-Lenovo-B590:~$

          – praveen kumar
          Dec 24 '14 at 14:37






        • 12





          sudo apt-get install cpu-checker for kvm-ok.

          – Wtower
          Feb 3 '16 at 10:24











        • @vembutech after executing command kvm-ok I got an output that- "does not exist". So, I've installed it using the above mentioned command. It has been downloaded. Last line is Processing triggers for ureadahead (0.100.0-16) ... now I run the kvm-ok command again. But again it says "does not exist"

          – Prabs
          Feb 8 '16 at 12:24










        2




        2





        praveen@praveen-Lenovo-B590:~$ kvm-ok INFO: /dev/kvm does not exist HINT: sudo modprobe kvm_intel INFO: For more detailed results, you should run this as root HINT: sudo /usr/sbin/kvm-ok praveen@praveen-Lenovo-B590:~$

        – praveen kumar
        Dec 24 '14 at 14:37





        praveen@praveen-Lenovo-B590:~$ kvm-ok INFO: /dev/kvm does not exist HINT: sudo modprobe kvm_intel INFO: For more detailed results, you should run this as root HINT: sudo /usr/sbin/kvm-ok praveen@praveen-Lenovo-B590:~$

        – praveen kumar
        Dec 24 '14 at 14:37




        12




        12





        sudo apt-get install cpu-checker for kvm-ok.

        – Wtower
        Feb 3 '16 at 10:24





        sudo apt-get install cpu-checker for kvm-ok.

        – Wtower
        Feb 3 '16 at 10:24













        @vembutech after executing command kvm-ok I got an output that- "does not exist". So, I've installed it using the above mentioned command. It has been downloaded. Last line is Processing triggers for ureadahead (0.100.0-16) ... now I run the kvm-ok command again. But again it says "does not exist"

        – Prabs
        Feb 8 '16 at 12:24







        @vembutech after executing command kvm-ok I got an output that- "does not exist". So, I've installed it using the above mentioned command. It has been downloaded. Last line is Processing triggers for ureadahead (0.100.0-16) ... now I run the kvm-ok command again. But again it says "does not exist"

        – Prabs
        Feb 8 '16 at 12:24













        14














        HP-EliteBook-820-G1:/opt/android-studio/bin$ sudo /usr/sbin/kvm-ok
        INFO: /dev/kvm does not exist
        HINT: sudo modprobe kvm_intel
        INFO: Your CPU supports KVM extensions
        INFO: KVM (vmx) is disabled by your BIOS
        HINT: Enter your BIOS setup and enable Virtualization Technology (VT),
        and then hard poweroff/poweron your system
        KVM acceleration can NOT be used


        Affter bios setting, I used the following command



        sudo modprobe kvm_intel


        Now is ok






        share|improve this answer


























        • this solution worked perfect for my Ubuntu 14.0

          – Tarun
          Jul 4 '16 at 10:02











        • this fixed it for me on Ubuntu 12.04 64Bit

          – SpamBot
          Aug 26 '16 at 14:58
















        14














        HP-EliteBook-820-G1:/opt/android-studio/bin$ sudo /usr/sbin/kvm-ok
        INFO: /dev/kvm does not exist
        HINT: sudo modprobe kvm_intel
        INFO: Your CPU supports KVM extensions
        INFO: KVM (vmx) is disabled by your BIOS
        HINT: Enter your BIOS setup and enable Virtualization Technology (VT),
        and then hard poweroff/poweron your system
        KVM acceleration can NOT be used


        Affter bios setting, I used the following command



        sudo modprobe kvm_intel


        Now is ok






        share|improve this answer


























        • this solution worked perfect for my Ubuntu 14.0

          – Tarun
          Jul 4 '16 at 10:02











        • this fixed it for me on Ubuntu 12.04 64Bit

          – SpamBot
          Aug 26 '16 at 14:58














        14












        14








        14







        HP-EliteBook-820-G1:/opt/android-studio/bin$ sudo /usr/sbin/kvm-ok
        INFO: /dev/kvm does not exist
        HINT: sudo modprobe kvm_intel
        INFO: Your CPU supports KVM extensions
        INFO: KVM (vmx) is disabled by your BIOS
        HINT: Enter your BIOS setup and enable Virtualization Technology (VT),
        and then hard poweroff/poweron your system
        KVM acceleration can NOT be used


        Affter bios setting, I used the following command



        sudo modprobe kvm_intel


        Now is ok






        share|improve this answer















        HP-EliteBook-820-G1:/opt/android-studio/bin$ sudo /usr/sbin/kvm-ok
        INFO: /dev/kvm does not exist
        HINT: sudo modprobe kvm_intel
        INFO: Your CPU supports KVM extensions
        INFO: KVM (vmx) is disabled by your BIOS
        HINT: Enter your BIOS setup and enable Virtualization Technology (VT),
        and then hard poweroff/poweron your system
        KVM acceleration can NOT be used


        Affter bios setting, I used the following command



        sudo modprobe kvm_intel


        Now is ok







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Feb 11 '15 at 12:37









        chaos

        19.5k85767




        19.5k85767










        answered Feb 11 '15 at 11:47









        AllalAllal

        1412




        1412













        • this solution worked perfect for my Ubuntu 14.0

          – Tarun
          Jul 4 '16 at 10:02











        • this fixed it for me on Ubuntu 12.04 64Bit

          – SpamBot
          Aug 26 '16 at 14:58



















        • this solution worked perfect for my Ubuntu 14.0

          – Tarun
          Jul 4 '16 at 10:02











        • this fixed it for me on Ubuntu 12.04 64Bit

          – SpamBot
          Aug 26 '16 at 14:58

















        this solution worked perfect for my Ubuntu 14.0

        – Tarun
        Jul 4 '16 at 10:02





        this solution worked perfect for my Ubuntu 14.0

        – Tarun
        Jul 4 '16 at 10:02













        this fixed it for me on Ubuntu 12.04 64Bit

        – SpamBot
        Aug 26 '16 at 14:58





        this fixed it for me on Ubuntu 12.04 64Bit

        – SpamBot
        Aug 26 '16 at 14:58











        8














        Worked on Ubuntu 15.04, Intel's CPU




        1. sudo apt-get install qemu-kvm

        2. Enable Virtualization Technology in BIOS

        3. sudo kvm-ok






        share|improve this answer




























          8














          Worked on Ubuntu 15.04, Intel's CPU




          1. sudo apt-get install qemu-kvm

          2. Enable Virtualization Technology in BIOS

          3. sudo kvm-ok






          share|improve this answer


























            8












            8








            8







            Worked on Ubuntu 15.04, Intel's CPU




            1. sudo apt-get install qemu-kvm

            2. Enable Virtualization Technology in BIOS

            3. sudo kvm-ok






            share|improve this answer













            Worked on Ubuntu 15.04, Intel's CPU




            1. sudo apt-get install qemu-kvm

            2. Enable Virtualization Technology in BIOS

            3. sudo kvm-ok







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jun 27 '15 at 23:46









            asilchenkoasilchenko

            8111




            8111























                3














                I had tried the command,



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


                but unfortunately it didn't work. Then I changed owner (rohanverma is user in my case) by using,



                sudo chown rohanverma:rohanverma -R /dev/kvm


                which worked for me.






                share|improve this answer




























                  3














                  I had tried the command,



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


                  but unfortunately it didn't work. Then I changed owner (rohanverma is user in my case) by using,



                  sudo chown rohanverma:rohanverma -R /dev/kvm


                  which worked for me.






                  share|improve this answer


























                    3












                    3








                    3







                    I had tried the command,



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


                    but unfortunately it didn't work. Then I changed owner (rohanverma is user in my case) by using,



                    sudo chown rohanverma:rohanverma -R /dev/kvm


                    which worked for me.






                    share|improve this answer













                    I had tried the command,



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


                    but unfortunately it didn't work. Then I changed owner (rohanverma is user in my case) by using,



                    sudo chown rohanverma:rohanverma -R /dev/kvm


                    which worked for me.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 25 '18 at 5:25









                    Rohan KumarRohan Kumar

                    29113




                    29113























                        2














                        I saw the same error. But I'm running Ubuntu on the VMware. Ubuntu is installed on the VMware. So the steps to resolve the problem is different from pure ubuntu machine. The complains went away with the following steps:




                        1. sudo apt install cpu-checker

                        2. In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.

                        3. sudo kvm-ok






                        share|improve this answer






























                          2














                          I saw the same error. But I'm running Ubuntu on the VMware. Ubuntu is installed on the VMware. So the steps to resolve the problem is different from pure ubuntu machine. The complains went away with the following steps:




                          1. sudo apt install cpu-checker

                          2. In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.

                          3. sudo kvm-ok






                          share|improve this answer




























                            2












                            2








                            2







                            I saw the same error. But I'm running Ubuntu on the VMware. Ubuntu is installed on the VMware. So the steps to resolve the problem is different from pure ubuntu machine. The complains went away with the following steps:




                            1. sudo apt install cpu-checker

                            2. In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.

                            3. sudo kvm-ok






                            share|improve this answer















                            I saw the same error. But I'm running Ubuntu on the VMware. Ubuntu is installed on the VMware. So the steps to resolve the problem is different from pure ubuntu machine. The complains went away with the following steps:




                            1. sudo apt install cpu-checker

                            2. In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.

                            3. sudo kvm-ok







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Jul 27 '16 at 4:01









                            techraf

                            2,77092035




                            2,77092035










                            answered Jul 26 '16 at 14:40









                            HongHong

                            14415




                            14415























                                0














                                Close any other hypervisors before starting Android Studio. I received the same error message when I tried to run an Android Virtual Device and had a Virtual Box VM running at the same time.






                                share|improve this answer





















                                • 1





                                  This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review

                                  – earthmeLon
                                  Jan 28 '17 at 0:37






                                • 2





                                  @earthmeLon I fixed it.

                                  – wjandrea
                                  Jan 28 '17 at 2:07
















                                0














                                Close any other hypervisors before starting Android Studio. I received the same error message when I tried to run an Android Virtual Device and had a Virtual Box VM running at the same time.






                                share|improve this answer





















                                • 1





                                  This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review

                                  – earthmeLon
                                  Jan 28 '17 at 0:37






                                • 2





                                  @earthmeLon I fixed it.

                                  – wjandrea
                                  Jan 28 '17 at 2:07














                                0












                                0








                                0







                                Close any other hypervisors before starting Android Studio. I received the same error message when I tried to run an Android Virtual Device and had a Virtual Box VM running at the same time.






                                share|improve this answer















                                Close any other hypervisors before starting Android Studio. I received the same error message when I tried to run an Android Virtual Device and had a Virtual Box VM running at the same time.







                                share|improve this answer














                                share|improve this answer



                                share|improve this answer








                                edited Jan 28 '17 at 2:07









                                wjandrea

                                9,25442663




                                9,25442663










                                answered Jan 27 '17 at 22:53









                                drkpeezydrkpeezy

                                1




                                1








                                • 1





                                  This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review

                                  – earthmeLon
                                  Jan 28 '17 at 0:37






                                • 2





                                  @earthmeLon I fixed it.

                                  – wjandrea
                                  Jan 28 '17 at 2:07














                                • 1





                                  This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review

                                  – earthmeLon
                                  Jan 28 '17 at 0:37






                                • 2





                                  @earthmeLon I fixed it.

                                  – wjandrea
                                  Jan 28 '17 at 2:07








                                1




                                1





                                This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review

                                – earthmeLon
                                Jan 28 '17 at 0:37





                                This does not really answer the question. If you have a different question, you can ask it by clicking Ask Question. You can also add a bounty to draw more attention to this question once you have enough reputation. - From Review

                                – earthmeLon
                                Jan 28 '17 at 0:37




                                2




                                2





                                @earthmeLon I fixed it.

                                – wjandrea
                                Jan 28 '17 at 2:07





                                @earthmeLon I fixed it.

                                – wjandrea
                                Jan 28 '17 at 2:07





                                protected by Community Nov 18 '17 at 20:17



                                Thank you for your interest in this question.
                                Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                                Would you like to answer one of these unanswered questions instead?



                                Popular posts from this blog

                                How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

                                is 'sed' thread safe

                                How to make a Squid Proxy server?