diff --git a/pages/linux/systemctl-suspend.md b/pages/linux/systemctl-suspend.md new file mode 100644 index 00000000000000..de01ff7f2f0331 --- /dev/null +++ b/pages/linux/systemctl-suspend.md @@ -0,0 +1,16 @@ +# systemctl suspend + +> Suspend the system. +> More information: . + +- 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`