Virtualization: Difference between revisions

From JoeHacker
(Created page with 'How to tell if you processor supports Virtualization. cat /proc/cpuinfo * vmx – (intel) * svm – (amd) If your cpuinfo file has a flag "svm" then you have AMD-v hardware …')
 
No edit summary
Line 10: Line 10:
your cpu.  
your cpu.  


  egrep ‘(vmx|svm)’ /proc/cpuinfo
  egrep 'vmx|svm' /proc/cpuinfo

Revision as of 17:50, 26 August 2009

How to tell if you processor supports Virtualization.

cat /proc/cpuinfo


  • vmx – (intel)
  • svm – (amd)

If your cpuinfo file has a flag "svm" then you have AMD-v hardware virtualization support (aka pacifica) on your cpu.

egrep 'vmx|svm' /proc/cpuinfo