Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-14 00:19:04 +00:00
parent 1111290472
commit 220486abce
43 changed files with 289 additions and 47 deletions

View File

@@ -0,0 +1,21 @@
---
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/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 --force`
- Put the system into hybrid sleep without sending a wall message to logged-in users:
`systemctl hybrid-sleep --no-wall`