Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



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

Saliva causes cancer, but only if swallowed in small amounts over a long period of time. -- George Carlin

Working...