在我的 BIOS 中找不到虚拟化

在我的 BIOS 中找不到虚拟化

我的 BIOS 是这样的 在此处输入图片描述

当我选择系统配置时 在此处输入图片描述

有关我的 BIOS 的更多信息

BIOS Information
    Vendor: Hewlett-Packard
    Version: 68PZD Ver. F.0D
    Release Date: 04/07/2009
    Address: 0xF0000
    Runtime Size: 64 kB
    ROM Size: 2048 kB
    Characteristics:
        PCI is supported
        PC Card (PCMCIA) is supported
        BIOS is upgradeable
        BIOS shadowing is allowed
        Boot from CD is supported
        Selectable boot is supported
        EDD is supported
        Print screen service is supported (int 5h)
        8042 keyboard services are supported (int 9h)
        Serial services are supported (int 14h)
        Printer services are supported (int 17h)
        ACPI is supported
        USB legacy is supported
        Smart battery is supported
        BIOS boot specification is supported
        Function key-initiated network boot is supported
        Targeted content distribution is supported
    BIOS Revision: 15.13
    Firmware Revision: 95.29

Handle 0x000A, DMI type 1, 27 bytes
System Information
    Manufacturer: Hewlett-Packard
    Product Name: HP Compaq 6830s

我想检查虚拟化是否已启用但正确的位置在哪里?

答案1

为了支持虚拟化,英特尔处理器必须具有 VT-x 功能。

您的处理器中可能没有 VT-x 功能;在这种情况下,您的 BIOS 将没有该选项。

笔记本电脑中的 Core 2 Duo 处理器并不总是具有 VT-x - 这取决于型号。运行以下命令:

$ grep "vmx" /proc/cpuinfo

如果你得到类似以下内容的输出:

flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm xsaveopt dtherm ida arat pln pts

grep在输出中找到了字母vmx,这表示您的处理器支持 VT-x。如果您没有得到输出(我怀疑是这种情况),那么您的处理器不支持 VT-x。因此没有 BIOS 选项。

相关内容