Is there a test to see if hardware virtualization (vmx / xvm) are presently enabled within a Linux session?
- by Dr. Edward Morbius
I'm writing procedures for configuring VirtualBox support for 64-bit SMP guests, which requires hardware virtualization suppot (VTx/Intel, AMD-V/AMD). I have successfully configured this myself, however I'd like the procedure to be clear.
sed -ne '/^flags/s/^.*: //p' /proc/cpuinfo |
egrep -q '(vmx|svm)' && echo Has hardware virt || echo No HW virt
... shows if the CPU is capable.
I've still got to go enable the feature in BIOS.
Any way to test from within Linux to see that this is no or not?
Thanks.