KVM is not installed on this machine (/dev/kvm is missing)
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
add a comment |
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
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
add a comment |
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
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
kvm android-studio android-sdk
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
add a comment |
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
add a comment |
7 Answers
7
active
oldest
votes
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.
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
add a comment |
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.
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
forkvm-ok
.
– Wtower
Feb 3 '16 at 10:24
@vembutech after executing commandkvm-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 isProcessing triggers for ureadahead (0.100.0-16) ...
now I run thekvm-ok
command again. But again it says "does not exist"
– Prabs
Feb 8 '16 at 12:24
add a comment |
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
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
add a comment |
Worked on Ubuntu 15.04, Intel's CPU
sudo apt-get install qemu-kvm
- Enable Virtualization Technology in BIOS
sudo kvm-ok
add a comment |
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.
add a comment |
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:
sudo apt install cpu-checker
- In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.
sudo kvm-ok
add a comment |
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.
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
add a comment |
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
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
forkvm-ok
.
– Wtower
Feb 3 '16 at 10:24
@vembutech after executing commandkvm-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 isProcessing triggers for ureadahead (0.100.0-16) ...
now I run thekvm-ok
command again. But again it says "does not exist"
– Prabs
Feb 8 '16 at 12:24
add a comment |
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.
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
forkvm-ok
.
– Wtower
Feb 3 '16 at 10:24
@vembutech after executing commandkvm-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 isProcessing triggers for ureadahead (0.100.0-16) ...
now I run thekvm-ok
command again. But again it says "does not exist"
– Prabs
Feb 8 '16 at 12:24
add a comment |
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.
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.
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
forkvm-ok
.
– Wtower
Feb 3 '16 at 10:24
@vembutech after executing commandkvm-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 isProcessing triggers for ureadahead (0.100.0-16) ...
now I run thekvm-ok
command again. But again it says "does not exist"
– Prabs
Feb 8 '16 at 12:24
add a comment |
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
forkvm-ok
.
– Wtower
Feb 3 '16 at 10:24
@vembutech after executing commandkvm-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 isProcessing triggers for ureadahead (0.100.0-16) ...
now I run thekvm-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
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
Worked on Ubuntu 15.04, Intel's CPU
sudo apt-get install qemu-kvm
- Enable Virtualization Technology in BIOS
sudo kvm-ok
add a comment |
Worked on Ubuntu 15.04, Intel's CPU
sudo apt-get install qemu-kvm
- Enable Virtualization Technology in BIOS
sudo kvm-ok
add a comment |
Worked on Ubuntu 15.04, Intel's CPU
sudo apt-get install qemu-kvm
- Enable Virtualization Technology in BIOS
sudo kvm-ok
Worked on Ubuntu 15.04, Intel's CPU
sudo apt-get install qemu-kvm
- Enable Virtualization Technology in BIOS
sudo kvm-ok
answered Jun 27 '15 at 23:46
asilchenkoasilchenko
8111
8111
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered May 25 '18 at 5:25
Rohan KumarRohan Kumar
29113
29113
add a comment |
add a comment |
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:
sudo apt install cpu-checker
- In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.
sudo kvm-ok
add a comment |
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:
sudo apt install cpu-checker
- In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.
sudo kvm-ok
add a comment |
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:
sudo apt install cpu-checker
- In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.
sudo kvm-ok
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:
sudo apt install cpu-checker
- In VMware, go setting->Processors->Virtualization Engine, check "Virtualize Intel VT-x/EPT or AMD-V/RVI.
sudo kvm-ok
edited Jul 27 '16 at 4:01
techraf
2,77092035
2,77092035
answered Jul 26 '16 at 14:40
HongHong
14415
14415
add a comment |
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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?
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