blob: 4ef0b6135646b72acab766961ea372e4afe90875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## Name
reboot - Reboot the machine
## Synopsis
```**sh
$ reboot
```
## Description
`reboot` instructs the kernel to reboot the machine immediately.
## Notes
The `reboot` utility opens the `/sys/firmware/power_state` node and writes the magic value "1"
to instruct the kernel to reboot the machine.
|