2

I did some searches, but I was unable to find a list of which CPU models support VT-x and which do not. Where can I find such a list?

Apreche
  • 1,405
  • 5
  • 17
  • 20
  • Related info (but from a post-purchase angle) http://serverfault.com/questions/14275/what-cpu-will-work-with-hyper-v – Kara Marfia Jun 12 '09 at 17:09

6 Answers6

3

Try http://en.wikipedia.org/wiki/List_of_Intel_microprocessors for Intel (search for 'VT') and http://en.wikipedia.org/wiki/List_of_AMD_microprocessors for AMD (search for 'AMD-V').

Chopper3
  • 101,299
  • 9
  • 108
  • 239
3

This wiki page has a reasonably good sample of both AMD (V) and Intel (VT-x) processors.

Dan Carley
  • 25,617
  • 5
  • 53
  • 70
2

Intel's ARK site is pretty awesome for finding out info on all Intel products (not just CPUs but motherboards, ethernet controllers, and chipsets).

ARK has a list of Intel CPUs that support VT-x here: http://ark.intel.com/VTList.aspx

zippy
  • 1,718
  • 3
  • 21
  • 36
1

For intels there's a really nice page:

Just go there and choose the "Intel Advanced Virtualization Technology" in the feature list. That is the second page after choosing the processor family.

Anyone knows a similiar site for AMD? I think it's a real lack of care that they don't have it easily available...

serverhorror
  • 6,478
  • 2
  • 25
  • 42
0

If you already have the CPU and you're using Linux you can check it programmatically like this:

$ grep ^flags /proc/cpuinfo | egrep '(vmx|svm}'

If this matches you have the virtualization CPU extensions (vmx==Intel, svm==AMD).

Make sure to enable VT in the system BIOS.

knweiss
  • 4,015
  • 24
  • 20
-1

http://intel.com for VT-x & http://amd.com V-x

Chopper3
  • 101,299
  • 9
  • 108
  • 239
Rajat
  • 3,349
  • 22
  • 29