Forgot your password?
typodupeerror

Comment Re:How to figure it out (Score 0) 315

echo -n "Does my cpu support virtualizaiton? "; if `cat /proc/cpuinfo | grep -q svm || cat /proc/cpuinfo | grep -q vmx`; then echo Yes; else echo No; fi

This is even easier:

echo -n "Does my cpu support virtualizaiton? "; if `cat /proc/cpuinfo | egrep -q '(svm|vmx)'`; then echo Yes; else echo No; fi

even easier: echo 'Does my cpu support virtualization? Yes' (only works sometimes)

Slashdot Top Deals

In any problem, if you find yourself doing an infinite amount of work, the answer may be obtained by inspection.

Working...