1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00
tldr/pages/linux/systemd-detect-virt.md

25 lines
631 B
Markdown
Raw Normal View History

# systemd-detect-virt
> Detect execution in a virtualized environment.
> More information: <https://www.freedesktop.org/software/systemd/man/systemd-detect-virt.html>.
- List detectable virtualization technologies:
`systemd-detect-virt --list`
- Detect virtualization, print the result and return a zero status code when running in a VM or a container, and a non-zero code otherwise:
`systemd-detect-virt`
- Silently check without printing anything:
`systemd-detect-virt --quiet`
- Only detect container virtualization:
`systemd-detect-virt --container`
- Only detect hardware virtualization:
`systemd-detect-virt --vm`