1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
'\" t
.TH "POWEROFF" "8" "" "systemd 255" "poweroff"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
poweroff, reboot, halt \- Power off, reboot, or halt the machine
.SH "SYNOPSIS"
.HP \w'\fBpoweroff\fR\ 'u
\fBpoweroff\fR [OPTIONS...]
.HP \w'\fBreboot\fR\ 'u
\fBreboot\fR [OPTIONS...]
.HP \w'\fBhalt\fR\ 'u
\fBhalt\fR [OPTIONS...]
.SH "DESCRIPTION"
.PP
\fBpoweroff\fR,
\fBreboot\fR, and
\fBhalt\fR
may be used to power off, reboot, or halt the machine\&. All three commands take the same options\&.
.SH "OPTIONS"
.PP
The following options are understood:
.PP
\fB\-\-help\fR
.RS 4
Print a short help text and exit\&.
.PP
Added in version 253\&.
.RE
.PP
\fB\-\-halt\fR
.RS 4
Halt the machine, regardless of which one of the three commands is invoked\&.
.sp
Added in version 253\&.
.RE
.PP
\fB\-p\fR, \fB\-\-poweroff\fR
.RS 4
Power off the machine, when either
\fBhalt\fR
or
\fBpoweroff\fR
is invoked\&. This option is ignored when
\fBreboot\fR
is invoked\&.
.sp
Added in version 253\&.
.RE
.PP
\fB\-\-reboot\fR
.RS 4
Reboot the machine, regardless of which one of the three commands is invoked\&.
.sp
Added in version 253\&.
.RE
.PP
\fB\-f\fR, \fB\-\-force\fR
.RS 4
Force immediate power\-off, halt, or reboot\&. If specified, the command does not contact the init system\&. In most cases, filesystems are not properly unmounted before shutdown\&. For example, the command
\fBreboot \-f\fR
is mostly equivalent to
\fBsystemctl reboot \-ff\fR, instead of
\fBsystemctl reboot \-f\fR\&.
.sp
Added in version 253\&.
.RE
.PP
\fB\-w\fR, \fB\-\-wtmp\-only\fR
.RS 4
Only write wtmp shutdown entry, do not actually power off, reboot, or halt\&.
.sp
Added in version 253\&.
.RE
.PP
\fB\-d\fR, \fB\-\-no\-wtmp\fR
.RS 4
Do not write wtmp shutdown entry\&.
.sp
Added in version 253\&.
.RE
.PP
\fB\-n\fR, \fB\-\-no\-sync\fR
.RS 4
Don\*(Aqt sync hard disks/storage media before power\-off, reboot, or halt\&.
.sp
Added in version 253\&.
.RE
.PP
\fB\-\-no\-wall\fR
.RS 4
Do not send wall message before power\-off, reboot, or halt\&.
.sp
Added in version 253\&.
.RE
.SH "EXIT STATUS"
.PP
On success, 0 is returned, a non\-zero failure code otherwise\&.
.SH "NOTES"
.PP
These commands are implemented in a way that preserves basic compatibility with the original SysV commands\&.
\fBsystemctl\fR(1)
verbs
\fBpoweroff\fR,
\fBreboot\fR,
\fBhalt\fR
provide the same functionality with some additional features\&.
.PP
Note that on many SysV systems
\fBhalt\fR
used to be synonymous to
\fBpoweroff\fR, i\&.e\&. both commands would equally result in powering the machine off\&. systemd is more accurate here, and
\fBhalt\fR
results in halting the machine only (leaving power on), and
\fBpoweroff\fR
is required to actually power it off\&.
.SH "SEE ALSO"
.PP
\fBsystemd\fR(1),
\fBsystemctl\fR(1),
\fBshutdown\fR(8),
\fBwall\fR(1)
|