mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 22:43:35 +00:00
23 lines
481 B
Plaintext
23 lines
481 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/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 '*'`
|