HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

reboot — Reboot the system. More information: <https://manned.org/reboot.8>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandrebootcliinformationmoresystem
linux

Problem

How to use the reboot command: Reboot the system. More information: <https://manned.org/reboot.8>.

Solution

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]}}

Code Snippets

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]}}

Context

tldr-pages: linux/reboot

Revisions (0)

No revisions yet.