mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
843 B
Plaintext
34 lines
843 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# systemd-detect-virt
|
|
|
|
> Detect execution in a virtualized environment.
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/latest/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 {{[-q|--quiet]}}`
|
|
|
|
- Only detect container virtualization:
|
|
|
|
`systemd-detect-virt {{[-c|--container]}}`
|
|
|
|
- Only detect hardware virtualization:
|
|
|
|
`systemd-detect-virt {{[-v|--vm]}}`
|
|
|
|
- Detect whether in a `chroot` environment:
|
|
|
|
`systemd-detect-virt {{[-r|--chroot]}}`
|