libpostal: Use real 1.1 release, add data files and enable tests (#362841)
[NixPkgs.git] / nixos / doc / manual / administration / rebooting.chapter.md
blobec4b889b1648ceecd81a908bb6ccc63eb1ded87e
1 # Rebooting and Shutting Down {#sec-rebooting}
3 The system can be shut down (and automatically powered off) by doing:
5 ```ShellSession
6 # shutdown
7 ```
9 This is equivalent to running `systemctl poweroff`.
11 To reboot the system, run
13 ```ShellSession
14 # reboot
15 ```
17 which is equivalent to `systemctl reboot`. Alternatively, you can
18 quickly reboot the system using `kexec`, which bypasses the BIOS by
19 directly loading the new kernel into memory:
21 ```ShellSession
22 # systemctl kexec
23 ```
25 The machine can be suspended to RAM (if supported) using `systemctl suspend`,
26 and suspended to disk using `systemctl hibernate`.
28 These commands can be run by any user who is logged in locally, i.e. on
29 a virtual console or in X11; otherwise, the user is asked for
30 authentication.