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

halt — Halt the system. More information: <https://manned.org/halt>.

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

Problem

How to use the halt command: Halt the system. More information: <https://manned.org/halt>.

Solution

halt — Halt the system. More information: <https://manned.org/halt>.

Halt the system:
halt


Power off the system (same as poweroff):
halt {{[-p|--poweroff]}}


Reboot the system (same as reboot):
halt --reboot


Halt immediately without contacting the system manager:
halt {{[-f|--force]}}


Write the wtmp shutdown entry without halting the system:
halt {{[-w|--wtmp-only]}}

Code Snippets

Halt the system

halt

Power off the system (same as `poweroff`)

halt {{[-p|--poweroff]}}

Reboot the system (same as `reboot`)

halt --reboot

Halt immediately without contacting the system manager

halt {{[-f|--force]}}

Write the wtmp shutdown entry without halting the system

halt {{[-w|--wtmp-only]}}

Context

tldr-pages: linux/halt

Revisions (0)

No revisions yet.