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.
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
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. |
|||||
|
|
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. |
|||||
|
|
For Windows CPUZ is a very quick way. It will list under the "Instructions" section on the first page. |
|||
|
|