Last active
February 11, 2021 05:35
-
-
Save schnell18/5ba53eb54d3bfc4adabd55f70232b7d5 to your computer and use it in GitHub Desktop.
Verify the virtualization support on various OSes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Verify the virtualization support on your Linux OS | |
| # (a non-empty output indicates supported virtualization): | |
| grep -E --color 'vmx|svm' /proc/cpuinfo | |
| # Verify the virtualization support on your macOS | |
| # (VMX in the output indicates enabled virtualization) | |
| sysctl -a | grep -E --color 'machdep.cpu.features|VMX' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment