This platform does not support virtualization Intel-VT-x/EPT or AMD-V/RVI

1. First understand what this option does: (Enable virtualization virtualization Intel-VT-x/EPT or AMD-V/RVI)

Allowing a single-core CPU to achieve multi-core effects allows a platform to run multiple operating systems at the same time, and applications can run in independent spaces without affecting each other. It will reduce the consumption of virtualization. In the virtual machine, the hardware virtualization features on the machine will be obtained, but the virtualization performance will be reduced; (simple understanding of the function: you can open the virtual machine in the virtual machine)

Operation 1. Start from the system level settings:

First of all, open Task Manager---Performance---CPU---Virtualization (check whether virtualization is enabled). If virtualization is not enabled, please continue to read this step. If virtualization is enabled, please skip this step and see step 2 (next step).

Virtualization is not enabled: first shut down the computer - enter the BIOS interface (the shortcut keys are different for different computers),

After entering the BIOS interface, you need to find and open related settings such as Secure Virtual Machine Mode (different brands of computers may be different, you need to Baidu to check the operation of entering the BIOS interface to enable computer virtualization) (simple understanding: because the settings in the computer BIOS are not enabled This virtualization option causes the virtual machine to report an error that does not support virtualization. Just enable it.

Operation 2. Solve the problem from the level of computer software conflict:                                                                     

The WIn10 system has its own hyper-v system virtual machine. Some of its services and configurations conflict with the VM configuration service, so it will cause the VM virtual machine to report an error. The solution is as follows: 1. Enable or enable Turn off windows function -----

Then close the relevant settings of Hyper-V.

 Then go to close the Hyper-v system service (this is very important!) My method is to disable them all~

 

 After the shutdown is complete: Run CMD as an administrator and enter the following command:

bcdedit /set hypervisorlaunchtype off

Its function is: Close the Hyper-V service of the system. Then restart the computer.

After restarting: Open CMD as an administrator and run  the bcdedit /enum            command. Pay attention to the return information at the end:

Whether the hypervisorlaunchtype Off                         is off,    if it is off, it indicates that the Hyper-V service is successfully shut down!

Bash

bcdedit /enum
Windows 启动加载器
-------------------
标识符                  {current}
device                  partition=C:
path                    \WINDOWS\system32\winload.efi
description             Windows 10
locale                  zh-CN
inherit                 {bootloadersettings}
recoverysequence        {f8d2f4fa-6fef-11e9-98b1-c46516b8c83b}
displaymessageoverride  Recovery
recoveryenabled         Yes
badmemoryaccess         Yes
isolatedcontext         Yes
allowedinmemorysettings 0x15000075
osdevice                partition=C:
systemroot              \WINDOWS
resumeobject            {f2ccb4d2-db7e-11e9-8dae-a0962a1e624e}
nx                      OptIn
bootmenupolicy          Standard
hypervisorlaunchtype    Off

Finally: Turn on the VM Turn on the virtual machine to verify success.

  

 The virtual machine can run normally! ! !

Guess you like

Origin blog.csdn.net/qq_29752857/article/details/131409452