Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions pages/linux/systemctl-freeze.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# systemctl freeze

> Freeze one or more units.
> Frozen units can be resumed with `systemctl thaw`.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#freeze%20PATTERN%E2%80%A6>.

- Freeze a specific unit:

`systemctl freeze {{unit}}`

- Freeze multiple units:

`systemctl freeze {{unit1 unit2 ...}}`

- Freeze all running units:

`systemctl freeze '*'`