1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 21:15:44 +02:00
tldr/linux/shutdown.md
2014-02-24 14:56:50 +01:00

16 lines
239 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.
`shutdown -r +5 &`
- Cancel a pending shutdown/reboot operation
`shutdown -c`