Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-10 00:18:18 +00:00
parent fbe9a1abf2
commit d2ae2c7f65
19 changed files with 103 additions and 34 deletions

View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl suspend
> Suspend the system.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#suspend>.
- Suspend the system immediately:
`systemctl suspend`
- Schedule a suspend after a 5 minute delay:
`sleep 300 && systemctl suspend`
- Suspend the system and then hibernate after a delay:
`systemctl hybrid-sleep`