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

The problem that we thought was a problem was, indeed, a problem, but not the problem we thought was the problem. -- Mike Smith

Working...