mirror of https://github.com/CrimsonTome/tldr.git
16 lines
238 B
Markdown
16 lines
238 B
Markdown
|
# shutdown
|
||
|
|
||
|
> Shutdown and reboot the system
|
||
|
|
||
|
- Reboot or poweroff (halt) the system immediately
|
||
|
|
||
|
`shutdown -r now`
|
||
|
`shutdown -h now`
|
||
|
|
||
|
- Reboot in 5 minutes.
|
||
|
|
||
|
`shutodwn -r +5 &`
|
||
|
|
||
|
- Cancel a pending shutdown/reboot operation
|
||
|
|
||
|
`shutdown -c`
|