mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 17:43:33 +00:00
22 lines
552 B
Plaintext
22 lines
552 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# systemctl hibernate
|
|
|
|
> Hibernate the system by saving the current state to disk and powering off.
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#hibernate>.
|
|
|
|
- Hibernate the system immediately:
|
|
|
|
`systemctl hibernate`
|
|
|
|
- Force hibernation even if inhibitors are present:
|
|
|
|
`systemctl hibernate {{[-f|--force]}}`
|
|
|
|
- Hibernate the system without sending a message to logged-in users:
|
|
|
|
`systemctl hibernate --no-wall`
|