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

systemctl suspend — Suspend the system. More information: <https://www.freedesktop.org/software/systemd/man/latest/syste

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandcliinformationsuspendsystemctl suspendmoresystem
linux

Problem

How to use the systemctl suspend command: Suspend the system. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#suspend>.

Solution

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

Code Snippets

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

Context

tldr-pages: linux/systemctl suspend

Revisions (0)

No revisions yet.