To Know Your System r Server Is capable of VirtualTechonology (VT).
cat /proc/cpuinfo | grep \(svm\|ht\|vmx\)
cat /proc/cpuinfo | grep "\(svm\|ht\|vmx\)"
cat /proc/cpuinfo | grep flags | tr ' ' '\n' | grep "\(svm\|ht\|vmx\)"
cat /proc/cpuinfo | grep flags | tr ' ' '\n' | grep "\(svm\|ht\|vmx\)" | sort | uniq
cat /proc/cpuinfo | grep flags | tr ' ' '\n' | sort | uniq | grep --color "\(svm\|ht\|vmx\)"