mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
568 B
Plaintext
30 lines
568 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# reboot
|
|
|
|
> Reboot the system.
|
|
> More information: <https://manned.org/reboot.8>.
|
|
|
|
- Reboot the system:
|
|
|
|
`reboot`
|
|
|
|
- Power off the system (same as `poweroff`):
|
|
|
|
`reboot {{[-p|--poweroff]}}`
|
|
|
|
- Halt (terminates all processes and shuts down the CPU) the system (same as `halt`):
|
|
|
|
`reboot --halt`
|
|
|
|
- Reboot immediately without contacting the system manager:
|
|
|
|
`reboot {{[-f|--force]}}`
|
|
|
|
- Write the wtmp shutdown entry without rebooting the system:
|
|
|
|
`reboot {{[-w|--wtmp-only]}}`
|