Reputation: 3931
When I start a multi-core virtual device in Genymotion, I get this:
What is this virtualization technology and how can I enable it?
My CPU: Intel Core i5-4440
Upvotes: 9
Views: 46170
Reputation: 1233
For Windows 10 enabling virtualization go to start menu
Start menu >> settings >> update and security >> recovery >> advanced startup>>restart now
Now after restarting do following steps
choose trouble shoot option>> UEFI Firmware settings >> Restart
Then afterwards press F10 >> Alone the menu side bar select System configuration >> Then simply enable virtual technology by clicking enter >> press F10 to save and exit >> press enter to save changes
Upvotes: 1
Reputation: 713
Your Virtualization is disabled so you need to enable it
go to BIOS ->Restart your system and click Fn+f2 next go to configuration click SVM and enable it (if you have AMD processor) or Click intel virtual Technology and enable it (if you have intel processor)
Upvotes: 0
Reputation: 1
If Ryzen 7 2700: reboot -> F2 or Del -> Advance mode -> CPU Configuration -> SVM = Enabled.
Default value for SVM is Disabled
Upvotes: 0
Reputation: 14823
You'll have to turn it on in your BIOS settings as you're turning on your computer. Not all BIOS look like this screenshot, but this is one example of what you're looking for:
Copied from source:
Enabling Intel VT-x and AMD-V virtualization hardware extensions in BIOS
This section describes how to identify hardware virtualization extensions and enable them in your BIOS if they are disabled.
The Intel VT-x extensions can be disabled in the BIOS. Certain laptop vendors have disabled the Intel VT-x extensions by default in their CPUs.
The virtualization extensions cannot be disabled in the BIOS for AMD-V.
Refer to the following section for instructions on enabling disabled virtualization extensions.
Verify the virtualization extensions are enabled in BIOS. The BIOS settings for Intel VT or AMD-V are usually in the Chipset or Processor menus. The menu names may vary from this guide, the virtualization extension settings may be found in Security Settings or other non standard menu names.
Reboot the computer and open the system's BIOS menu. This can usually be done by pressing the delete key, the F1
key or Alt
and F4
keys depending on the system.
Enabling the virtualization extensions in BIOS
Note
Many of the steps below may vary depending on your motherboard, processor type, chipset and OEM. Refer to your system's accompanying documentation for the correct information on configuring your system.
a. Open the Processor submenu The processor settings menu may be hidden in the Chipset, Advanced CPU Configuration or Northbridge.
b. Enable Intel Virtualization Technology (also known as Intel VT-x). AMD-V extensions cannot be disabled in the BIOS and should already be enabled. The virtualization extensions may be labeled Virtualization Extensions, Vanderpool or various other names depending on the OEM and system BIOS.
c. Enable Intel VT-d or AMD IOMMU, if the options are available. Intel VT-d and AMD IOMMU are used for PCI device assignment.
d. Select Save & Exit.
Reboot the machine.
When the machine has booted, run cat /proc/cpuinfo |grep -E "vmx|svm"
. Specifying --color
is optional, but useful if you want the search term highlighted. If the command outputs, the virtualization extensions are now enabled. If there is no output your system may not have the virtualization extensions or the correct BIOS setting enabled.
Upvotes: 12
Reputation: 111
This is common issue faced by many developers for me this issue is raised when i create genymotion device for android version 5.0 and above versions here is the solution
For ubuntu
During startup, quickly press F12 or F2. Click on setup.
Using arrows, navigate to Intel Virtualization Technology. ( It might on the next page)
If it's disabled, then Enable it using arrow and enter key.
List item. You'll find "Save and Exit" written on top right corner of the screen.
Now start Your system and start genymotion It will work.
Upvotes: 0
Reputation: 79
If you have virtualization on in the BIOS/UEFI and still have issues there may be a possible Windows Hyper-V/ Virtualbox conflict
VirtualBox does not support nested hardware virtualization LINK
try disabling Hyper-V
Control Panel> Programs and Features> Turn Windows Features On or Off
Note: disabling Hyper-V will "break/disable" other hypervisors that require Hyper-V such as Native Docker for Windows
Upvotes: 5