Skip to content

Instantly share code, notes, and snippets.

@schnell18
Last active February 11, 2021 05:35
Show Gist options
  • Select an option

  • Save schnell18/5ba53eb54d3bfc4adabd55f70232b7d5 to your computer and use it in GitHub Desktop.

Select an option

Save schnell18/5ba53eb54d3bfc4adabd55f70232b7d5 to your computer and use it in GitHub Desktop.
Verify the virtualization support on various OSes
# 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