https://www.cyberciti.biz/faq/linux-xen-vmware-kvm-intel-vt-amd-v-support/
Last updated: July 19, 2018
How do I find out if my system support Intel – VT / AMD -V hardware virtualization extensions for host CPU using the command line options? How do I check if my Linux hardware from HP/IBM/Dell supports virtualization?
Both Intel and AMD CPU support virtualization technology which allows multiple operating systems to run simultaneously on an x86 server or computer in a safe and efficient manner using hardware virtualization. XEN, KVM, Vmware and other virtualization software can use Intel and AMD hardware virtualization for full virtualization. In other words with Intel VT, or AMD-V you can run an unmodified guest OS, like MS-Windows without any problems. To run KVM, you need a CPU that supports hardware virtualization.[donotprint]
The /proc/cpuinfo file has information about your CPU. The information includes, the number of CPUs, threads, cores, sockets, and Non-Uniform Memory Access (NUMA) nodes. There is also formation about the CPU caches and cache sharing, family, model, bogoMIPS, byte order, and stepping. You need to note down the following vendor specific cpu flags:
Use the following commands to verify if hardware virtualization extensions is enabled or not in your BIOS.
Type the following command as root to verify that host cpu has support for Intel VT technology, enter:# grep --color vmx /proc/cpuinfo
Sample outputs:
Fig.01: Linux check Intel VT - if my server can run full virtualization or not