Determine if my PC supports HW Virtualization

后端 未结 8 1143
夕颜
夕颜 2021-01-03 01:30

How, in general, does one determine if a PC supports hardware virtualization? I use VirtualPC to set up parallel test environments and I\'d enjoy a bit of a speed boost.

8条回答
  •  别那么骄傲
    2021-01-03 01:53

    Download this: http://www.cpuid.com/cpuz.php

    Also check, http://en.wikipedia.org/wiki/X86_virtualization

    Edit: Additional, I know it's for XEN but the instructions are the same for all VMs that want hardware support. http://wiki.xensource.com/xenwiki/HVM_Compatible_Processors

    I can't try it from work, but I'm sure it can identify whether you've got the Intel VT or AMD-V instructions. Intel will have a "vmx" instruction and AMD will have a "svm".

    On linux you can check /proc/cpuinfo, "egrep '(vmx|svm)' /proc/cpuinfo"

提交回复
热议问题