HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

systemctl thaw — Thaw (resume) one or more frozen units. Units can be frozen with `systemctl freeze`. More informatio

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thawcommandfrozencliresumesystemctl thawmoreone
linux

Problem

How to use the systemctl thaw command: Thaw (resume) one or more frozen units. Units can be frozen with systemctl freeze. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#thaw%20PATTERN%E2%80%A6>.

Solution

systemctl thaw — Thaw (resume) one or more frozen units. Units can be frozen with systemctl freeze. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#thaw%20PATTERN%E2%80%A6>.

Thaw a specific unit:
systemctl thaw {{unit}}


Thaw multiple units:
systemctl thaw {{unit1 unit2 ...}}


Thaw all currently frozen units:
systemctl thaw '*'

Code Snippets

Thaw a specific unit

systemctl thaw {{unit}}

Thaw multiple units

systemctl thaw {{unit1 unit2 ...}}

Thaw all currently frozen units

systemctl thaw '*'

Context

tldr-pages: linux/systemctl thaw

Revisions (0)

No revisions yet.