Files
cheatsheet-tldr/tldr/linux/systemctl-freeze
2026-01-13 00:19:20 +00:00

23 lines
488 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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 '*'`