Linux command to check CPU virtualization support (#12376)

This commit is contained in:
James Ward
2019-01-28 18:25:03 -07:00
committed by Kubernetes Prow Robot
parent 3907af5a1b
commit 2ad6e9f124
@@ -12,7 +12,10 @@ This page shows you how to install [Minikube](/docs/tutorials/hello-minikube), a
{{% capture prerequisites %}}
VT-x or AMD-v virtualization must be enabled in your computer's BIOS.
VT-x or AMD-v virtualization must be enabled in your computer's BIOS. To check this on Linux run the following and verify the output is non-empty:
```shell
egrep --color 'vmx|svm' /proc/cpuinfo
```
{{% /capture %}}