2014-08-24 19:18:18 +02:00
<chapter xmlns= "http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0"
xml:id="sec-rebooting">
2018-05-01 19:57:09 -04:00
<title > Rebooting and Shutting Down</title>
<para >
The system can be shut down (and automatically powered off) by doing:
2014-08-24 19:18:18 +02:00
<screen >
2016-06-01 16:23:32 +02:00
# shutdown
2014-08-24 19:18:18 +02:00
</screen>
2018-05-01 19:57:09 -04:00
This is equivalent to running <command > systemctl poweroff</command> .
</para>
<para >
To reboot the system, run
2014-08-24 19:18:18 +02:00
<screen >
2016-06-01 16:23:32 +02:00
# reboot
2014-08-24 19:18:18 +02:00
</screen>
2019-09-18 22:13:35 +02:00
which is equivalent to <command > systemctl reboot</command> . Alternatively, you can quickly reboot the system using <literal > kexec</literal> , which bypasses the BIOS by directly loading the new kernel into memory:
2014-08-24 19:18:18 +02:00
<screen >
2016-06-01 16:23:32 +02:00
# systemctl kexec
2014-08-24 19:18:18 +02:00
</screen>
2018-05-01 19:57:09 -04:00
</para>
<para >
2019-09-18 22:13:35 +02:00
The machine can be suspended to RAM (if supported) using <command > systemctl suspend</command> , and suspended to disk using <command > systemctl hibernate</command> .
2018-05-01 19:57:09 -04:00
</para>
<para >
2019-09-18 22:13:35 +02:00
These commands can be run by any user who is logged in locally, i.e. on a virtual console or in X11; otherwise, the user is asked for authentication.
2018-05-01 19:57:09 -04:00
</para>
2016-06-01 16:23:32 +02:00
</chapter>