mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
581 B
Plaintext
22 lines
581 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# systemd-cgls
|
|
|
|
> Show the contents of the selected Linux control group hierarchy in a tree.
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemd-cgls.html>.
|
|
|
|
- Display the whole control group hierarchy on your system:
|
|
|
|
`systemd-cgls`
|
|
|
|
- Display a control group tree of a specific resource controller:
|
|
|
|
`systemd-cgls {{cpu|memory|io}}`
|
|
|
|
- Display the control group hierarchy of one or more systemd units:
|
|
|
|
`systemd-cgls {{[-u|--unit]}} {{unit1 unit2 ...}}`
|