Comment threats (Score 1) 497
Just recite your own version of this: http://www.youtube.com/watch?v=KgmO32IdwuE
My best friend's a sponge - we share 70% of the same genes.
Is that you Patrick?
Endowment: $54,080,984
Pretty sure that's 8 figures...
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)
I know engineers. They love to change things. - Dr. McCoy