mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 05:44:37 +00:00
22 lines
601 B
Plaintext
22 lines
601 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# systemctl hybrid-sleep
|
|
|
|
> Put the system into hybrid sleep, which combines suspend-to-RAM and hibernate.
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#hybrid-sleep>.
|
|
|
|
- Put the system into hybrid sleep immediately:
|
|
|
|
`systemctl hybrid-sleep`
|
|
|
|
- Force hybrid sleep even if inhibitors are present:
|
|
|
|
`systemctl hybrid-sleep {{[-f|--force]}}`
|
|
|
|
- Put the system into hybrid sleep without sending a wall message to logged-in users:
|
|
|
|
`systemctl hybrid-sleep --no-wall`
|