I work for a tech shop and we inherit computers from various places. I am looking for a small program/script I can run to tell me if the processor has any virtual machine extensions built into it. I am looking for something along the lines of SecurAble where it is a small simple dedicated program. A Linux or Windows program would work fine.
Asked
Active
Viewed 6,268 times
4 Answers
4
Run this on a Linux box:
# egrep --color -i "svm|vmx" /proc/cpuinfo
VMX is the Intel processor flag and SVM is the AMD flag. If you get a match then you have support.

David Pashley
- 23,497
- 2
- 46
- 73
-
1Heres a doc page describing /proc/cpuinfo flags: http://blog.incase.de/index.php/cpu-feature-flags-and-their-meanings/ – Bakanekobrain Jun 09 '09 at 17:55
2
For Linux, just cat /proc/cpuinfo and look at the "flags" section of the output.
For Windows, SecurAble seems to be the best option as far as I can tell, although someone else may have a better suggestion.

gharper
- 5,425
- 4
- 29
- 35
-
Via this: http://www.mydigitallife.info/2009/05/05/easy-way-to-determine-if-cpu-supports-windows-7-virtual-pc-xp-mode/ SecurAble doesn't even require installation. – MathewC Jun 09 '09 at 17:10
-
1
1
For Windows CPUZ is a very quick way. It will list under the "Instructions" section on the first page.

Jeff Miles
- 2,065
- 2
- 19
- 27