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

poweroff — Power off the system. More information: <https://manned.org/poweroff>.

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

Problem

How to use the poweroff command: Power off the system. More information: <https://manned.org/poweroff>.

Solution

poweroff — Power off the system. More information: <https://manned.org/poweroff>.

Power off the system:
poweroff


Halt the system (same as halt):
poweroff --halt


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


Shut down immediately without contacting the system manager:
poweroff {{[-f|--force]}}


Write the wtmp shutdown entry without shutting down the system:
poweroff {{[-w|--wtmp-only]}}

Code Snippets

Power off the system

poweroff

Halt the system (same as `halt`)

poweroff --halt

Reboot the system (same as `reboot`)

poweroff --reboot

Shut down immediately without contacting the system manager

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

Write the wtmp shutdown entry without shutting down the system

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

Context

tldr-pages: linux/poweroff

Revisions (0)

No revisions yet.