]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/systemctl.xml
Merge pull request #13635 from fbuihuu/no-aliases-with-enable
[thirdparty/systemd.git] / man / systemctl.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4 <!ENTITY % entities SYSTEM "custom-entities.ent" >
5 %entities;
6 ]>
7 <!-- SPDX-License-Identifier: LGPL-2.1+ -->
8
9 <refentry id="systemctl"
10 xmlns:xi="http://www.w3.org/2001/XInclude">
11
12 <refentryinfo>
13 <title>systemctl</title>
14 <productname>systemd</productname>
15 </refentryinfo>
16
17 <refmeta>
18 <refentrytitle>systemctl</refentrytitle>
19 <manvolnum>1</manvolnum>
20 </refmeta>
21
22 <refnamediv>
23 <refname>systemctl</refname>
24 <refpurpose>Control the systemd system and service manager</refpurpose>
25 </refnamediv>
26
27 <refsynopsisdiv>
28 <cmdsynopsis>
29 <command>systemctl</command>
30 <arg choice="opt" rep="repeat">OPTIONS</arg>
31 <arg choice="plain">COMMAND</arg>
32 <arg choice="opt" rep="repeat">UNIT</arg>
33 </cmdsynopsis>
34 </refsynopsisdiv>
35
36 <refsect1>
37 <title>Description</title>
38
39 <para><command>systemctl</command> may be used to introspect and
40 control the state of the <literal>systemd</literal> system and
41 service manager. Please refer to
42 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>
43 for an introduction into the basic concepts and functionality this
44 tool manages.</para>
45 </refsect1>
46
47 <refsect1>
48 <title>Commands</title>
49
50 <para>The following commands are understood:</para>
51
52 <refsect2>
53 <title>Unit Commands</title>
54
55 <variablelist>
56 <varlistentry>
57 <term><command>list-units</command> <optional><replaceable>PATTERN</replaceable></optional></term>
58
59 <listitem>
60 <para>List units that <command>systemd</command> currently has in memory. This includes units that are
61 either referenced directly or through a dependency, units that are pinned by applications programmatically,
62 or units that were active in the past and have failed. By default only units which are active, have pending
63 jobs, or have failed are shown; this can be changed with option <option>--all</option>. If one or more
64 <replaceable>PATTERN</replaceable>s are specified, only units matching one of them are shown. The units
65 that are shown are additionally filtered by <option>--type=</option> and <option>--state=</option> if those
66 options are specified.</para>
67
68 <para>Produces output similar to
69 <programlisting> UNIT LOAD ACTIVE SUB DESCRIPTION
70 sys-module-fuse.device loaded active plugged /sys/module/fuse
71 -.mount loaded active mounted Root Mount
72 boot-efi.mount loaded active mounted /boot/efi
73 systemd-journald.service loaded active running Journal Service
74 systemd-logind.service loaded active running Login Service
75 ● user@1000.service loaded failed failed User Manager for UID 1000
76
77 systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
78
79 LOAD = Reflects whether the unit definition was properly loaded.
80 ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
81 SUB = The low-level unit activation state, values depend on unit type.
82
83 123 loaded units listed. Pass --all to see loaded but inactive units, too.
84 To show all installed unit files use 'systemctl list-unit-files'.
85 </programlisting>
86 The header and the last unit of a given type are underlined if the
87 terminal supports that. A colored dot is shown next to services which
88 were masked, not found, or otherwise failed.</para>
89
90 <para>The LOAD column shows the load state, one of <constant>loaded</constant>,
91 <constant>not-found</constant>, <constant>bad-setting</constant>, <constant>error</constant>,
92 <constant>masked</constant>. The ACTIVE columns shows the general unit state, one of
93 <constant>active</constant>, <constant>reloading</constant>, <constant>inactive</constant>,
94 <constant>failed</constant>, <constant>activating</constant>, <constant>deactivating</constant>. The SUB
95 column shows the unit-type-specific detailed state of the unit, possible values vary by unit type. The list
96 of possible LOAD, ACTIVE, and SUB states is not constant and new systemd releases may both add and remove
97 values. <programlisting>systemctl --state=help</programlisting> command maybe be used to display the
98 current set of possible values.</para>
99
100 <para>This is the default command.</para>
101 </listitem>
102 </varlistentry>
103
104 <varlistentry>
105 <term><command>list-sockets</command> <optional><replaceable>PATTERN</replaceable></optional></term>
106
107 <listitem>
108 <para>List socket units currently in memory, ordered by listening address. If one or more
109 <replaceable>PATTERN</replaceable>s are specified, only socket units matching one of them are
110 shown. Produces output similar to
111 <programlisting>
112 LISTEN UNIT ACTIVATES
113 /dev/initctl systemd-initctl.socket systemd-initctl.service
114
115 [::]:22 sshd.socket sshd.service
116 kobject-uevent 1 systemd-udevd-kernel.socket systemd-udevd.service
117
118 5 sockets listed.</programlisting>
119 Note: because the addresses might contains spaces, this output
120 is not suitable for programmatic consumption.
121 </para>
122
123 <para>Also see <option>--show-types</option>, <option>--all</option>, and <option>--state=</option>.</para>
124 </listitem>
125 </varlistentry>
126
127 <varlistentry>
128 <term><command>list-timers</command> <optional><replaceable>PATTERN</replaceable></optional></term>
129
130 <listitem>
131 <para>List timer units currently in memory, ordered by the time they elapse next. If one or more
132 <replaceable>PATTERN</replaceable>s are specified, only units matching one of them are shown.
133 Produces output similar to
134 <programlisting>
135 NEXT LEFT LAST PASSED UNIT ACTIVATES
136 n/a n/a Thu 2017-02-23 13:40:29 EST 3 days ago ureadahead-stop.timer ureadahead-stop.service
137 Sun 2017-02-26 18:55:42 EST 1min 14s left Thu 2017-02-23 13:54:44 EST 3 days ago systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.service
138 Sun 2017-02-26 20:37:16 EST 1h 42min left Sun 2017-02-26 11:56:36 EST 6h ago apt-daily.timer apt-daily.service
139 Sun 2017-02-26 20:57:49 EST 2h 3min left Sun 2017-02-26 11:56:36 EST 6h ago snapd.refresh.timer snapd.refresh.service
140 </programlisting>
141 </para>
142
143 <para><emphasis>NEXT</emphasis> shows the next time the timer will run.</para>
144 <para><emphasis>LEFT</emphasis> shows how long till the next time the timer runs.</para>
145 <para><emphasis>LAST</emphasis> shows the last time the timer ran.</para>
146 <para><emphasis>PASSED</emphasis> shows how long has passed since the timer last ran.</para>
147 <para><emphasis>UNIT</emphasis> shows the name of the timer</para>
148 <para><emphasis>ACTIVATES</emphasis> shows the name the service the timer activates when it runs.</para>
149
150 <para>Also see <option>--all</option> and <option>--state=</option>.</para>
151 </listitem>
152 </varlistentry>
153
154 <varlistentry>
155 <term><command>start <replaceable>PATTERN</replaceable></command></term>
156
157 <listitem>
158 <para>Start (activate) one or more units specified on the command line.</para>
159
160 <para>Note that unit glob patterns expand to names of units currently in memory. Units which are
161 not active and are not in a failed state usually are not in memory, and will not be matched by
162 any pattern. In addition, in case of instantiated units, systemd is often unaware of the instance
163 name until the instance has been started. Therefore, using glob patterns with
164 <command>start</command> has limited usefulness. Also, secondary alias names of units are not
165 considered.</para>
166
167 <para>Option <option>--all</option> may be used to also operate on inactive units which are
168 referenced by other loaded units. Note that this is not the same as operating on "all" possible
169 units, because as the previous paragraph describes, such a list is ill-defined. Nevertheless,
170 <command>systemctl start --all <replaceable>GLOB</replaceable></command> may be useful if all the
171 units that should match the pattern are pulled in by some target which is known to be loaded.
172 </para>
173 </listitem>
174 </varlistentry>
175 <varlistentry>
176 <term><command>stop <replaceable>PATTERN</replaceable></command></term>
177
178 <listitem>
179 <para>Stop (deactivate) one or more units specified on the command line.</para>
180
181 <para>This command will fail if the unit does not exist or if stopping of the unit is prohibited (see
182 <varname>RefuseManualStop=</varname> in
183 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
184 It will <emphasis>not</emphasis> fail if any of the commands configured to stop the unit
185 (<varname>ExecStop=</varname>, etc.) fail, because the manager will still forcibly terminate the
186 unit.</para>
187 </listitem>
188 </varlistentry>
189 <varlistentry>
190 <term><command>reload <replaceable>PATTERN</replaceable></command></term>
191
192 <listitem>
193 <para>Asks all units listed on the command line to reload
194 their configuration. Note that this will reload the
195 service-specific configuration, not the unit configuration
196 file of systemd. If you want systemd to reload the
197 configuration file of a unit, use the
198 <command>daemon-reload</command> command. In other words:
199 for the example case of Apache, this will reload Apache's
200 <filename>httpd.conf</filename> in the web server, not the
201 <filename>apache.service</filename> systemd unit
202 file.</para>
203
204 <para>This command should not be confused with the
205 <command>daemon-reload</command> command.</para>
206 </listitem>
207
208 </varlistentry>
209 <varlistentry>
210 <term><command>restart <replaceable>PATTERN</replaceable></command></term>
211
212 <listitem>
213 <para>Stop and then start one or more units specified on the command line. If the units are not running
214 yet, they will be started.</para>
215
216 <para>Note that restarting a unit with this command does not necessarily flush out all of the unit's
217 resources before it is started again. For example, the per-service file descriptor storage facility (see
218 <varname>FileDescriptorStoreMax=</varname> in
219 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>) will
220 remain intact as long as the unit has a job pending, and is only cleared when the unit is fully stopped and
221 no jobs are pending anymore. If it is intended that the file descriptor store is flushed out, too, during a
222 restart operation an explicit <command>systemctl stop</command> command followed by <command>systemctl
223 start</command> should be issued.</para>
224 </listitem>
225 </varlistentry>
226 <varlistentry>
227 <term><command>try-restart <replaceable>PATTERN</replaceable></command></term>
228
229 <listitem>
230 <para>Stop and then start one or more units specified on the
231 command line if the units are running. This does nothing
232 if units are not running.</para>
233 <!-- Note that we don't document condrestart here, as that is just compatibility support, and we generally
234 don't document that. -->
235 </listitem>
236 </varlistentry>
237 <varlistentry>
238 <term><command>reload-or-restart <replaceable>PATTERN</replaceable></command></term>
239
240 <listitem>
241 <para>Reload one or more units if they support it. If not, stop and then start them instead. If the units
242 are not running yet, they will be started.</para>
243 </listitem>
244 </varlistentry>
245 <varlistentry>
246 <term><command>try-reload-or-restart <replaceable>PATTERN</replaceable></command></term>
247
248 <listitem>
249 <para>Reload one or more units if they support it. If not, stop and then start them instead. This does
250 nothing if the units are not running.</para>
251 <!-- Note that we don't document force-reload here, as that is just compatibility support, and we generally
252 don't document that. -->
253 </listitem>
254 </varlistentry>
255 <varlistentry>
256 <term><command>isolate <replaceable>UNIT</replaceable></command></term>
257
258 <listitem>
259 <para>Start the unit specified on the command line and its dependencies
260 and stop all others, unless they have
261 <option>IgnoreOnIsolate=yes</option> (see
262 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
263 If a unit name with no extension is given, an extension of
264 <literal>.target</literal> will be assumed.</para>
265
266 <para>This is similar to changing the runlevel in a
267 traditional init system. The <command>isolate</command>
268 command will immediately stop processes that are not enabled
269 in the new unit, possibly including the graphical
270 environment or terminal you are currently using.</para>
271
272 <para>Note that this is allowed only on units where
273 <option>AllowIsolate=</option> is enabled. See
274 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
275 for details.</para>
276 </listitem>
277 </varlistentry>
278 <varlistentry>
279 <term><command>kill <replaceable>PATTERN</replaceable></command></term>
280
281 <listitem>
282 <para>Send a signal to one or more processes of the
283 unit. Use <option>--kill-who=</option> to select which
284 process to kill. Use <option>--signal=</option> to select
285 the signal to send.</para>
286 </listitem>
287 </varlistentry>
288 <varlistentry>
289 <term><command>clean <replaceable>PATTERN</replaceable></command></term>
290
291 <listitem>
292 <para>Remove the configuration, state, cache, logs or runtime data of the specified units. Use
293 <option>--what=</option> to select which kind of resource to remove. For service units this may
294 be used to remove the directories configured with <varname>ConfigurationDirectory=</varname>,
295 <varname>StateDirectory=</varname>, <varname>CacheDirectory=</varname>,
296 <varname>LogsDirectory=</varname> and <varname>RuntimeDirectory=</varname>, see
297 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
298 for details. For timer units this may be used to clear out the persistent timestamp data if
299 <varname>Persistent=</varname> is used and <option>--what=state</option> is selected, see
300 <citerefentry><refentrytitle>systemd.timer</refentrytitle><manvolnum>5</manvolnum></citerefentry>. This
301 command only applies to units that use either of these settings. If <option>--what=</option> is
302 not specified, both the cache and runtime data are removed (as these two types of data are
303 generally redundant and reproducible on the next invocation of the unit).</para>
304 </listitem>
305 </varlistentry>
306 <varlistentry>
307 <term><command>is-active <replaceable>PATTERN</replaceable></command></term>
308
309 <listitem>
310 <para>Check whether any of the specified units are active
311 (i.e. running). Returns an exit code
312 <constant>0</constant> if at least one is active, or
313 non-zero otherwise. Unless <option>--quiet</option> is
314 specified, this will also print the current unit state to
315 standard output.</para>
316 </listitem>
317 </varlistentry>
318 <varlistentry>
319 <term><command>is-failed <replaceable>PATTERN</replaceable></command></term>
320
321 <listitem>
322 <para>Check whether any of the specified units are in a
323 "failed" state. Returns an exit code
324 <constant>0</constant> if at least one has failed,
325 non-zero otherwise. Unless <option>--quiet</option> is
326 specified, this will also print the current unit state to
327 standard output.</para>
328 </listitem>
329 </varlistentry>
330 <varlistentry>
331 <term><command>status</command> <optional><replaceable>PATTERN</replaceable>…|<replaceable>PID</replaceable>…]</optional></term>
332
333 <listitem>
334 <para>Show terse runtime status information about one or
335 more units, followed by most recent log data from the
336 journal. If no units are specified, show system status. If
337 combined with <option>--all</option>, also show the status of
338 all units (subject to limitations specified with
339 <option>-t</option>). If a PID is passed, show information
340 about the unit the process belongs to.</para>
341
342 <para>This function is intended to generate human-readable
343 output. If you are looking for computer-parsable output,
344 use <command>show</command> instead. By default, this
345 function only shows 10 lines of output and ellipsizes
346 lines to fit in the terminal window. This can be changed
347 with <option>--lines</option> and <option>--full</option>,
348 see above. In addition, <command>journalctl
349 --unit=<replaceable>NAME</replaceable></command> or
350 <command>journalctl
351 --user-unit=<replaceable>NAME</replaceable></command> use
352 a similar filter for messages and might be more
353 convenient.
354 </para>
355
356 <para>systemd implicitly loads units as necessary, so just running the <command>status</command> will
357 attempt to load a file. The command is thus not useful for determining if something was already loaded or
358 not. The units may possibly also be quickly unloaded after the operation is completed if there's no reason
359 to keep it in memory thereafter.
360 </para>
361
362 <example>
363 <title>Example output from systemctl status </title>
364
365 <programlisting>$ systemctl status bluetooth
366 ● bluetooth.service - Bluetooth service
367 Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
368 Active: active (running) since Wed 2017-01-04 13:54:04 EST; 1 weeks 0 days ago
369 Docs: man:bluetoothd(8)
370 Main PID: 930 (bluetoothd)
371 Status: "Running"
372 Tasks: 1
373 Memory: 648.0K
374 CPU: 435ms
375 CGroup: /system.slice/bluetooth.service
376 └─930 /usr/lib/bluetooth/bluetoothd
377
378 Jan 12 10:46:45 example.com bluetoothd[8900]: Not enough free handles to register service
379 Jan 12 10:46:45 example.com bluetoothd[8900]: Current Time Service could not be registered
380 Jan 12 10:46:45 example.com bluetoothd[8900]: gatt-time-server: Input/output error (5)
381 </programlisting>
382
383 <para>The dot ("●") uses color on supported terminals to summarize the unit state at a glance. White
384 indicates an <literal>inactive</literal> or <literal>deactivating</literal> state. Red indicates a
385 <literal>failed</literal> or <literal>error</literal> state and green indicates an
386 <literal>active</literal>, <literal>reloading</literal> or <literal>activating</literal> state.
387 </para>
388
389 <para>The "Loaded:" line in the output will show <literal>loaded</literal> if the unit has been loaded into
390 memory. Other possible values for "Loaded:" include: <literal>error</literal> if there was a problem
391 loading it, <literal>not-found</literal> if not unit file was found for this unit,
392 <literal>bad-setting</literal> if an essential unit file setting could not be parsed and
393 <literal>masked</literal> if the unit file has been masked. Along with showing the path to the unit file,
394 this line will also show the enablement state. Enabled commands start at boot. See the full table of
395 possible enablement states — including the definition of <literal>masked</literal> — in the documentation
396 for the <command>is-enabled</command> command.
397 </para>
398
399 <para>The "Active:" line shows active state. The value is usually <literal>active</literal> or
400 <literal>inactive</literal>. Active could mean started, bound, plugged in, etc depending on the unit type.
401 The unit could also be in process of changing states, reporting a state of <literal>activating</literal> or
402 <literal>deactivating</literal>. A special <literal>failed</literal> state is entered when the service
403 failed in some way, such as a crash, exiting with an error code or timing out. If the failed state is
404 entered the cause will be logged for later reference.</para>
405 </example>
406
407 </listitem>
408 </varlistentry>
409 <varlistentry>
410 <term><command>show</command> <optional><replaceable>PATTERN</replaceable>…|<replaceable>JOB</replaceable></optional></term>
411
412 <listitem>
413 <para>Show properties of one or more units, jobs, or the manager itself. If no argument is specified,
414 properties of the manager will be shown. If a unit name is specified, properties of the unit are shown, and
415 if a job ID is specified, properties of the job are shown. By default, empty properties are suppressed. Use
416 <option>--all</option> to show those too. To select specific properties to show, use
417 <option>--property=</option>. This command is intended to be used whenever computer-parsable output is
418 required. Use <command>status</command> if you are looking for formatted human-readable output.</para>
419
420 <para>Many properties shown by <command>systemctl show</command> map directly to configuration settings of
421 the system and service manager and its unit files. Note that the properties shown by the command are
422 generally more low-level, normalized versions of the original configuration settings and expose runtime
423 state in addition to configuration. For example, properties shown for service units include the service's
424 current main process identifier as <literal>MainPID</literal> (which is runtime state), and time settings
425 are always exposed as properties ending in the <literal>…USec</literal> suffix even if a matching
426 configuration options end in <literal>…Sec</literal>, because microseconds is the normalized time unit used
427 by the system and service manager.</para>
428 </listitem>
429 </varlistentry>
430 <varlistentry>
431 <term><command>cat <replaceable>PATTERN</replaceable></command></term>
432
433 <listitem>
434 <para>Show backing files of one or more units. Prints the
435 "fragment" and "drop-ins" (source files) of units. Each
436 file is preceded by a comment which includes the file
437 name. Note that this shows the contents of the backing files
438 on disk, which may not match the system manager's
439 understanding of these units if any unit files were
440 updated on disk and the <command>daemon-reload</command>
441 command wasn't issued since.</para>
442 </listitem>
443 </varlistentry>
444 <varlistentry>
445 <term><command>set-property <replaceable>UNIT</replaceable> <replaceable>PROPERTY</replaceable>=<replaceable>VALUE</replaceable></command></term>
446
447 <listitem>
448 <para>Set the specified unit properties at runtime where
449 this is supported. This allows changing configuration
450 parameter properties such as resource control settings at
451 runtime. Not all properties may be changed at runtime, but
452 many resource control settings (primarily those in
453 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>)
454 may. The changes are applied immediately, and stored on disk
455 for future boots, unless <option>--runtime</option> is
456 passed, in which case the settings only apply until the
457 next reboot. The syntax of the property assignment follows
458 closely the syntax of assignments in unit files.</para>
459
460 <para>Example: <command>systemctl set-property foobar.service CPUWeight=200</command></para>
461
462 <para>If the specified unit appears to be inactive, the
463 changes will be only stored on disk as described
464 previously hence they will be effective when the unit will
465 be started.</para>
466
467 <para>Note that this command allows changing multiple properties at the same time, which is
468 preferable over setting them individually.</para>
469
470 <para>Example: <command>systemctl set-property foobar.service CPUWeight=200 MemoryMax=2G IPAccounting=yes</command></para>
471
472 <para>Like with unit file configuration settings, assigning an empty setting usually resets a
473 property to its defaults.</para>
474
475 <para>Example: <command>systemctl set-property avahi-daemon.service IPAddressDeny=</command></para>
476 </listitem>
477 </varlistentry>
478
479 <varlistentry>
480 <term><command>help <replaceable>PATTERN</replaceable>…|<replaceable>PID</replaceable></command></term>
481
482 <listitem>
483 <para>Show manual pages for one or more units, if
484 available. If a PID is given, the manual pages for the unit
485 the process belongs to are shown.</para>
486 </listitem>
487 </varlistentry>
488
489 <varlistentry>
490 <term><command>reset-failed [<replaceable>PATTERN</replaceable>…]</command></term>
491
492 <listitem>
493 <para>Reset the <literal>failed</literal> state of the specified units, or if no unit name is passed, reset
494 the state of all units. When a unit fails in some way (i.e. process exiting with non-zero error code,
495 terminating abnormally or timing out), it will automatically enter the <literal>failed</literal> state and
496 its exit code and status is recorded for introspection by the administrator until the service is
497 stopped/re-started or reset with this command.</para>
498
499 <para>In addition to resetting the <literal>failed</literal> state of a unit it also resets various other
500 per-unit properties: the start rate limit counter of all unit types is reset to zero, as is the restart
501 counter of service units. Thus, if a unit's start limit (as configured with
502 <varname>StartLimitIntervalSec=</varname>/<varname>StartLimitBurst=</varname>) is hit and the unit refuses
503 to be started again, use this command to make it startable again.</para>
504 </listitem>
505 </varlistentry>
506
507 <varlistentry>
508 <term>
509 <command>list-dependencies</command>
510 <optional><replaceable>UNIT</replaceable></optional>
511 </term>
512
513 <listitem>
514 <para>Shows units required and wanted by the specified
515 unit. This recursively lists units following the
516 <varname>Requires=</varname>,
517 <varname>Requisite=</varname>,
518 <varname>ConsistsOf=</varname>,
519 <varname>Wants=</varname>, <varname>BindsTo=</varname>
520 dependencies. If no unit is specified,
521 <filename>default.target</filename> is implied.</para>
522
523 <para>By default, only target units are recursively
524 expanded. When <option>--all</option> is passed, all other
525 units are recursively expanded as well.</para>
526
527 <para>Options <option>--reverse</option>,
528 <option>--after</option>, <option>--before</option>
529 may be used to change what types of dependencies
530 are shown.</para>
531
532 <para>Note that this command only lists units currently loaded into memory by the service manager. In
533 particular, this command is not suitable to get a comprehensive list at all reverse dependencies on a
534 specific unit, as it won't list the dependencies declared by units currently not loaded.</para>
535 </listitem>
536 </varlistentry>
537 </variablelist>
538 </refsect2>
539
540 <refsect2>
541 <title>Unit File Commands</title>
542
543 <variablelist>
544 <varlistentry>
545 <term><command>list-unit-files</command> <optional><replaceable>PATTERN…</replaceable></optional></term>
546
547 <listitem>
548 <para>List unit files installed on the system, in combination with their enablement state (as reported by
549 <command>is-enabled</command>). If one or more <replaceable>PATTERN</replaceable>s are specified, only unit
550 files whose name matches one of them are shown (patterns matching unit file system paths are not
551 supported).</para>
552 </listitem>
553 </varlistentry>
554
555 <varlistentry>
556 <term><command>enable <replaceable>UNIT</replaceable></command></term>
557 <term><command>enable <replaceable>PATH</replaceable></command></term>
558
559 <listitem>
560 <para>Enable one or more units or unit instances. This will create a set of symlinks, as encoded in the
561 <literal>[Install]</literal> sections of the indicated unit files. After the symlinks have been created,
562 the system manager configuration is reloaded (in a way equivalent to <command>daemon-reload</command>), in
563 order to ensure the changes are taken into account immediately. Note that this does
564 <emphasis>not</emphasis> have the effect of also starting any of the units being enabled. If this is
565 desired, combine this command with the <option>--now</option> switch, or invoke <command>start</command>
566 with appropriate arguments later. Note that in case of unit instance enablement (i.e. enablement of units of
567 the form <filename>foo@bar.service</filename>), symlinks named the same as instances are created in the
568 unit configuration directory, however they point to the single template unit file they are instantiated
569 from.</para>
570
571 <para>This command expects either valid unit names (in which case various unit file directories are
572 automatically searched for unit files with appropriate names), or absolute paths to unit files (in which
573 case these files are read directly). If a specified unit file is located outside of the usual unit file
574 directories, an additional symlink is created, linking it into the unit configuration path, thus ensuring
575 it is found when requested by commands such as <command>start</command>. The file system where the linked
576 unit files are located must be accessible when systemd is started (e.g. anything underneath
577 <filename>/home</filename> or <filename>/var</filename> is not allowed, unless those directories are
578 located on the root file system).</para>
579
580 <para>This command will print the file system operations executed. This output may be suppressed by passing
581 <option>--quiet</option>.
582 </para>
583
584 <para>Note that this operation creates only the symlinks suggested in the <literal>[Install]</literal>
585 section of the unit files. While this command is the recommended way to manipulate the unit configuration
586 directory, the administrator is free to make additional changes manually by placing or removing symlinks
587 below this directory. This is particularly useful to create configurations that deviate from the suggested
588 default installation. In this case, the administrator must make sure to invoke
589 <command>daemon-reload</command> manually as necessary, in order to ensure the changes are taken into
590 account.
591 </para>
592
593 <para>Enabling units should not be confused with starting (activating) units, as done by the
594 <command>start</command> command. Enabling and starting units is orthogonal: units may be enabled without
595 being started and started without being enabled. Enabling simply hooks the unit into various suggested
596 places (for example, so that the unit is automatically started on boot or when a particular kind of
597 hardware is plugged in). Starting actually spawns the daemon process (in case of service units), or binds
598 the socket (in case of socket units), and so on.</para>
599
600 <para>Depending on whether <option>--system</option>, <option>--user</option>, <option>--runtime</option>,
601 or <option>--global</option> is specified, this enables the unit for the system, for the calling user only,
602 for only this boot of the system, or for all future logins of all users. Note that in the last case, no
603 systemd daemon configuration is reloaded.</para>
604
605 <para>Using <command>enable</command> on masked units is not supported and results in an error.</para>
606 </listitem>
607 </varlistentry>
608
609 <varlistentry>
610 <term><command>disable <replaceable>UNIT</replaceable></command></term>
611
612 <listitem>
613 <para>Disables one or more units. This removes all symlinks to the unit files backing the specified units
614 from the unit configuration directory, and hence undoes any changes made by <command>enable</command> or
615 <command>link</command>. Note that this removes <emphasis>all</emphasis> symlinks to matching unit files,
616 including manually created symlinks, and not just those actually created by <command>enable</command> or
617 <command>link</command>. Note that while <command>disable</command> undoes the effect of
618 <command>enable</command>, the two commands are otherwise not symmetric, as <command>disable</command> may
619 remove more symlinks than a prior <command>enable</command> invocation of the same unit created.</para>
620
621 <para>This command expects valid unit names only, it does not accept paths to unit files.</para>
622
623 <para>In addition to the units specified as arguments, all units are disabled that are listed in the
624 <varname>Also=</varname> setting contained in the <literal>[Install]</literal> section of any of the unit
625 files being operated on.</para>
626
627 <para>This command implicitly reloads the system manager configuration after completing the operation. Note
628 that this command does not implicitly stop the units that are being disabled. If this is desired, either
629 combine this command with the <option>--now</option> switch, or invoke the <command>stop</command> command
630 with appropriate arguments later.</para>
631
632 <para>This command will print information about the file system operations (symlink removals)
633 executed. This output may be suppressed by passing <option>--quiet</option>.
634 </para>
635
636 <para>This command honors <option>--system</option>, <option>--user</option>, <option>--runtime</option>
637 and <option>--global</option> in a similar way as <command>enable</command>.</para>
638 </listitem>
639 </varlistentry>
640
641 <varlistentry>
642 <term><command>reenable <replaceable>UNIT</replaceable></command></term>
643
644 <listitem>
645 <para>Reenable one or more units, as specified on the command line. This is a combination of
646 <command>disable</command> and <command>enable</command> and is useful to reset the symlinks a unit file is
647 enabled with to the defaults configured in its <literal>[Install]</literal> section. This command expects
648 a unit name only, it does not accept paths to unit files.</para>
649 </listitem>
650 </varlistentry>
651
652 <varlistentry>
653 <term><command>preset <replaceable>UNIT</replaceable></command></term>
654
655 <listitem>
656 <para>Reset the enable/disable status one or more unit files, as specified on
657 the command line, to the defaults configured in the preset policy files. This
658 has the same effect as <command>disable</command> or
659 <command>enable</command>, depending how the unit is listed in the preset
660 files.</para>
661
662 <para>Use <option>--preset-mode=</option> to control whether units shall be
663 enabled and disabled, or only enabled, or only disabled.</para>
664
665 <para>If the unit carries no install information, it will be silently ignored
666 by this command. <replaceable>UNIT</replaceable> must be the real unit name,
667 any alias names are ignored silently.</para>
668
669 <para>For more information on the preset policy format, see
670 <citerefentry><refentrytitle>systemd.preset</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
671 For more information on the concept of presets, please consult the
672 <ulink url="https://www.freedesktop.org/wiki/Software/systemd/Preset">Preset</ulink>
673 document.</para>
674 </listitem>
675 </varlistentry>
676
677 <varlistentry>
678 <term><command>preset-all</command></term>
679
680 <listitem>
681 <para>Resets all installed unit files to the defaults
682 configured in the preset policy file (see above).</para>
683
684 <para>Use <option>--preset-mode=</option> to control
685 whether units shall be enabled and disabled, or only
686 enabled, or only disabled.</para>
687 </listitem>
688 </varlistentry>
689
690 <varlistentry>
691 <term><command>is-enabled <replaceable>UNIT</replaceable></command></term>
692
693 <listitem>
694 <para>Checks whether any of the specified unit files are
695 enabled (as with <command>enable</command>). Returns an
696 exit code of 0 if at least one is enabled, non-zero
697 otherwise. Prints the current enable status (see table).
698 To suppress this output, use <option>--quiet</option>.
699 To show installation targets, use <option>--full</option>.
700 </para>
701
702 <table>
703 <title>
704 <command>is-enabled</command> output
705 </title>
706
707 <tgroup cols='3'>
708 <thead>
709 <row>
710 <entry>Name</entry>
711 <entry>Description</entry>
712 <entry>Exit Code</entry>
713 </row>
714 </thead>
715 <tbody>
716 <row>
717 <entry><literal>enabled</literal></entry>
718 <entry morerows='1'>Enabled via <filename>.wants/</filename>, <filename>.requires/</filename> or <varname>Alias=</varname> symlinks (permanently in <filename>/etc/systemd/system/</filename>, or transiently in <filename>/run/systemd/system/</filename>).</entry>
719 <entry morerows='1'>0</entry>
720 </row>
721 <row>
722 <entry><literal>enabled-runtime</literal></entry>
723 </row>
724 <row>
725 <entry><literal>linked</literal></entry>
726 <entry morerows='1'>Made available through one or more symlinks to the unit file (permanently in <filename>/etc/systemd/system/</filename> or transiently in <filename>/run/systemd/system/</filename>), even though the unit file might reside outside of the unit file search path.</entry>
727 <entry morerows='1'>&gt; 0</entry>
728 </row>
729 <row>
730 <entry><literal>linked-runtime</literal></entry>
731 </row>
732 <row>
733 <entry><literal>masked</literal></entry>
734 <entry morerows='1'>Completely disabled, so that any start operation on it fails (permanently in <filename>/etc/systemd/system/</filename> or transiently in <filename>/run/systemd/systemd/</filename>).</entry>
735 <entry morerows='1'>&gt; 0</entry>
736 </row>
737 <row>
738 <entry><literal>masked-runtime</literal></entry>
739 </row>
740 <row>
741 <entry><literal>static</literal></entry>
742 <entry>The unit file is not enabled, and has no provisions for enabling in the <literal>[Install]</literal> unit file section.</entry>
743 <entry>0</entry>
744 </row>
745 <row>
746 <entry><literal>indirect</literal></entry>
747 <entry>The unit file itself is not enabled, but it has a non-empty <varname>Also=</varname> setting in the <literal>[Install]</literal> unit file section, listing other unit files that might be enabled, or it has an alias under a different name through a symlink that is not specified in <varname>Also=</varname>. For template unit file, an instance different than the one specified in <varname>DefaultInstance=</varname> is enabled.</entry>
748 <entry>0</entry>
749 </row>
750 <row>
751 <entry><literal>disabled</literal></entry>
752 <entry>The unit file is not enabled, but contains an <literal>[Install]</literal> section with installation instructions.</entry>
753 <entry>&gt; 0</entry>
754 </row>
755 <row>
756 <entry><literal>generated</literal></entry>
757 <entry>The unit file was generated dynamically via a generator tool. See <citerefentry><refentrytitle>systemd.generator</refentrytitle><manvolnum>7</manvolnum></citerefentry>. Generated unit files may not be enabled, they are enabled implicitly by their generator.</entry>
758 <entry>0</entry>
759 </row>
760 <row>
761 <entry><literal>transient</literal></entry>
762 <entry>The unit file has been created dynamically with the runtime API. Transient units may not be enabled.</entry>
763 <entry>0</entry>
764 </row>
765 <row>
766 <entry><literal>bad</literal></entry>
767 <entry>The unit file is invalid or another error occurred. Note that <command>is-enabled</command> will not actually return this state, but print an error message instead. However the unit file listing printed by <command>list-unit-files</command> might show it.</entry>
768 <entry>&gt; 0</entry>
769 </row>
770 </tbody>
771 </tgroup>
772 </table>
773
774 </listitem>
775 </varlistentry>
776
777 <varlistentry>
778 <term><command>mask <replaceable>UNIT</replaceable></command></term>
779
780 <listitem>
781 <para>Mask one or more units, as specified on the command line. This will link these unit files to
782 <filename>/dev/null</filename>, making it impossible to start them. This is a stronger version of
783 <command>disable</command>, since it prohibits all kinds of activation of the unit, including enablement
784 and manual activation. Use this option with care. This honors the <option>--runtime</option> option to only
785 mask temporarily until the next reboot of the system. The <option>--now</option> option may be used to
786 ensure that the units are also stopped. This command expects valid unit names only, it does not accept unit
787 file paths.</para>
788 </listitem>
789 </varlistentry>
790
791 <varlistentry>
792 <term><command>unmask <replaceable>UNIT</replaceable></command></term>
793
794 <listitem>
795 <para>Unmask one or more unit files, as specified on the command line. This will undo the effect of
796 <command>mask</command>. This command expects valid unit names only, it does not accept unit file
797 paths.</para>
798 </listitem>
799 </varlistentry>
800
801 <varlistentry>
802 <term><command>link <replaceable>PATH</replaceable></command></term>
803
804 <listitem>
805 <para>Link a unit file that is not in the unit file search paths into the unit file search path. This
806 command expects an absolute path to a unit file. The effect of this may be undone with
807 <command>disable</command>. The effect of this command is that a unit file is made available for commands
808 such as <command>start</command>, even though it is not installed directly in the unit search path. The
809 file system where the linked unit files are located must be accessible when systemd is started
810 (e.g. anything underneath <filename>/home</filename> or <filename>/var</filename> is not allowed, unless
811 those directories are located on the root file system).</para>
812 </listitem>
813 </varlistentry>
814
815 <varlistentry>
816 <term><command>revert <replaceable>UNIT</replaceable></command></term>
817
818 <listitem>
819 <para>Revert one or more unit files to their vendor versions. This command removes drop-in configuration
820 files that modify the specified units, as well as any user-configured unit file that overrides a matching
821 vendor supplied unit file. Specifically, for a unit <literal>foo.service</literal> the matching directories
822 <literal>foo.service.d/</literal> with all their contained files are removed, both below the persistent and
823 runtime configuration directories (i.e. below <filename>/etc/systemd/system</filename> and
824 <filename>/run/systemd/system</filename>); if the unit file has a vendor-supplied version (i.e. a unit file
825 located below <filename>/usr</filename>) any matching persistent or runtime unit file that overrides it is
826 removed, too. Note that if a unit file has no vendor-supplied version (i.e. is only defined below
827 <filename>/etc/systemd/system</filename> or <filename>/run/systemd/system</filename>, but not in a unit
828 file stored below <filename>/usr</filename>), then it is not removed. Also, if a unit is masked, it is
829 unmasked.</para>
830
831 <para>Effectively, this command may be used to undo all changes made with <command>systemctl
832 edit</command>, <command>systemctl set-property</command> and <command>systemctl mask</command> and puts
833 the original unit file with its settings back in effect.</para>
834 </listitem>
835 </varlistentry>
836
837 <varlistentry>
838 <term><command>add-wants <replaceable>TARGET</replaceable>
839 <replaceable>UNIT</replaceable></command></term>
840 <term><command>add-requires <replaceable>TARGET</replaceable>
841 <replaceable>UNIT</replaceable></command></term>
842
843 <listitem>
844 <para>Adds <literal>Wants=</literal> or <literal>Requires=</literal>
845 dependencies, respectively, to the specified
846 <replaceable>TARGET</replaceable> for one or more units. </para>
847
848 <para>This command honors <option>--system</option>,
849 <option>--user</option>, <option>--runtime</option> and
850 <option>--global</option> in a way similar to
851 <command>enable</command>.</para>
852
853 </listitem>
854 </varlistentry>
855
856 <varlistentry>
857 <term><command>edit <replaceable>UNIT</replaceable></command></term>
858
859 <listitem>
860 <para>Edit a drop-in snippet or a whole replacement file if
861 <option>--full</option> is specified, to extend or override the
862 specified unit.</para>
863
864 <para>Depending on whether <option>--system</option> (the default),
865 <option>--user</option>, or <option>--global</option> is specified,
866 this command creates a drop-in file for each unit either for the system,
867 for the calling user, or for all futures logins of all users. Then,
868 the editor (see the "Environment" section below) is invoked on
869 temporary files which will be written to the real location if the
870 editor exits successfully.</para>
871
872 <para>If <option>--full</option> is specified, this will copy the
873 original units instead of creating drop-in files.</para>
874
875 <para>If <option>--force</option> is specified and any units do
876 not already exist, new unit files will be opened for editing.</para>
877
878 <para>If <option>--runtime</option> is specified, the changes will
879 be made temporarily in <filename>/run</filename> and they will be
880 lost on the next reboot.</para>
881
882 <para>If the temporary file is empty upon exit, the modification of
883 the related unit is canceled.</para>
884
885 <para>After the units have been edited, systemd configuration is
886 reloaded (in a way that is equivalent to <command>daemon-reload</command>).
887 </para>
888
889 <para>Note that this command cannot be used to remotely edit units
890 and that you cannot temporarily edit units which are in
891 <filename>/etc</filename>, since they take precedence over
892 <filename>/run</filename>.</para>
893 </listitem>
894 </varlistentry>
895
896 <varlistentry>
897 <term><command>get-default</command></term>
898
899 <listitem>
900 <para>Return the default target to boot into. This returns
901 the target unit name <filename>default.target</filename>
902 is aliased (symlinked) to.</para>
903 </listitem>
904 </varlistentry>
905
906 <varlistentry>
907 <term><command>set-default <replaceable>TARGET</replaceable></command></term>
908
909 <listitem>
910 <para>Set the default target to boot into. This sets
911 (symlinks) the <filename>default.target</filename> alias
912 to the given target unit.</para>
913 </listitem>
914 </varlistentry>
915
916 </variablelist>
917 </refsect2>
918
919 <refsect2>
920 <title>Machine Commands</title>
921
922 <variablelist>
923 <varlistentry>
924 <term><command>list-machines</command> <optional><replaceable>PATTERN</replaceable></optional></term>
925
926 <listitem>
927 <para>List the host and all running local containers with
928 their state. If one or more
929 <replaceable>PATTERN</replaceable>s are specified, only
930 containers matching one of them are shown.
931 </para>
932 </listitem>
933 </varlistentry>
934 </variablelist>
935 </refsect2>
936
937 <refsect2>
938 <title>Job Commands</title>
939
940 <variablelist>
941 <varlistentry>
942 <term><command>list-jobs <optional><replaceable>PATTERN…</replaceable></optional></command></term>
943
944 <listitem>
945 <para>List jobs that are in progress. If one or more
946 <replaceable>PATTERN</replaceable>s are specified, only
947 jobs for units matching one of them are shown.</para>
948
949 <para>When combined with <option>--after</option> or <option>--before</option> the list is augmented with
950 information on which other job each job is waiting for, and which other jobs are waiting for it, see
951 above.</para>
952 </listitem>
953 </varlistentry>
954 <varlistentry>
955 <term><command>cancel <replaceable>JOB</replaceable></command></term>
956
957 <listitem>
958 <para>Cancel one or more jobs specified on the command line
959 by their numeric job IDs. If no job ID is specified, cancel
960 all pending jobs.</para>
961 </listitem>
962 </varlistentry>
963 </variablelist>
964 </refsect2>
965
966 <refsect2>
967 <title>Environment Commands</title>
968
969 <variablelist>
970 <varlistentry>
971 <term><command>show-environment</command></term>
972
973 <listitem>
974 <para>Dump the systemd manager environment block. This is the environment
975 block that is passed to all processes the manager spawns. The environment
976 block will be dumped in straight-forward form suitable for sourcing into
977 most shells. If no special characters or whitespace is present in the variable
978 values, no escaping is performed, and the assignments have the form
979 <literal>VARIABLE=value</literal>. If whitespace or characters which have
980 special meaning to the shell are present, dollar-single-quote escaping is
981 used, and assignments have the form <literal>VARIABLE=$'value'</literal>.
982 This syntax is known to be supported by
983 <citerefentry project='die-net'><refentrytitle>bash</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
984 <citerefentry project='die-net'><refentrytitle>zsh</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
985 <citerefentry project='die-net'><refentrytitle>ksh</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
986 and
987 <citerefentry project='die-net'><refentrytitle>busybox</refentrytitle><manvolnum>1</manvolnum></citerefentry>'s
988 <citerefentry project='die-net'><refentrytitle>ash</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
989 but not
990 <citerefentry project='die-net'><refentrytitle>dash</refentrytitle><manvolnum>1</manvolnum></citerefentry>
991 or
992 <citerefentry project='die-net'><refentrytitle>fish</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
993 </para>
994 </listitem>
995 </varlistentry>
996 <varlistentry>
997 <term><command>set-environment <replaceable>VARIABLE=VALUE</replaceable></command></term>
998
999 <listitem>
1000 <para>Set one or more systemd manager environment variables,
1001 as specified on the command line.</para>
1002 </listitem>
1003 </varlistentry>
1004 <varlistentry>
1005 <term><command>unset-environment <replaceable>VARIABLE</replaceable></command></term>
1006
1007 <listitem>
1008 <para>Unset one or more systemd manager environment
1009 variables. If only a variable name is specified, it will be
1010 removed regardless of its value. If a variable and a value
1011 are specified, the variable is only removed if it has the
1012 specified value.</para>
1013 </listitem>
1014 </varlistentry>
1015 <varlistentry>
1016 <term>
1017 <command>import-environment</command>
1018 <optional><replaceable>VARIABLE…</replaceable></optional>
1019 </term>
1020
1021 <listitem>
1022 <para>Import all, one or more environment variables set on
1023 the client into the systemd manager environment block. If
1024 no arguments are passed, the entire environment block is
1025 imported. Otherwise, a list of one or more environment
1026 variable names should be passed, whose client-side values
1027 are then imported into the manager's environment
1028 block.</para>
1029 </listitem>
1030 </varlistentry>
1031 </variablelist>
1032 </refsect2>
1033
1034 <refsect2>
1035 <title>Manager Lifecycle Commands</title>
1036
1037 <variablelist>
1038 <varlistentry>
1039 <term><command>daemon-reload</command></term>
1040
1041 <listitem>
1042 <para>Reload the systemd manager configuration. This will
1043 rerun all generators (see
1044 <citerefentry><refentrytitle>systemd.generator</refentrytitle><manvolnum>7</manvolnum></citerefentry>),
1045 reload all unit files, and recreate the entire dependency
1046 tree. While the daemon is being reloaded, all sockets
1047 systemd listens on behalf of user configuration will stay
1048 accessible.</para>
1049
1050 <para>This command should not be confused with the
1051 <command>reload</command> command.</para>
1052 </listitem>
1053 </varlistentry>
1054 <varlistentry>
1055 <term><command>daemon-reexec</command></term>
1056
1057 <listitem>
1058 <para>Reexecute the systemd manager. This will serialize the
1059 manager state, reexecute the process and deserialize the
1060 state again. This command is of little use except for
1061 debugging and package upgrades. Sometimes, it might be
1062 helpful as a heavy-weight <command>daemon-reload</command>.
1063 While the daemon is being reexecuted, all sockets systemd listening
1064 on behalf of user configuration will stay accessible.
1065 </para>
1066 </listitem>
1067 </varlistentry>
1068 </variablelist>
1069 </refsect2>
1070
1071 <refsect2>
1072 <title>System Commands</title>
1073
1074 <variablelist>
1075 <varlistentry>
1076 <term><command>is-system-running</command></term>
1077
1078 <listitem>
1079 <para>Checks whether the system is operational. This
1080 returns success (exit code 0) when the system is fully up
1081 and running, specifically not in startup, shutdown or
1082 maintenance mode, and with no failed services. Failure is
1083 returned otherwise (exit code non-zero). In addition, the
1084 current state is printed in a short string to standard
1085 output, see the table below. Use <option>--quiet</option> to
1086 suppress this output.</para>
1087
1088 <para>Use <option>--wait</option> to wait until the boot
1089 process is completed before printing the current state and
1090 returning the appropriate error status. If <option>--wait</option>
1091 is in use, states <varname>initializing</varname> or
1092 <varname>starting</varname> will not be reported, instead
1093 the command will block until a later state (such as
1094 <varname>running</varname> or <varname>degraded</varname>)
1095 is reached.</para>
1096
1097 <table>
1098 <title><command>is-system-running</command> output</title>
1099 <tgroup cols='3'>
1100 <colspec colname='name'/>
1101 <colspec colname='description'/>
1102 <colspec colname='exit-code'/>
1103 <thead>
1104 <row>
1105 <entry>Name</entry>
1106 <entry>Description</entry>
1107 <entry>Exit Code</entry>
1108 </row>
1109 </thead>
1110 <tbody>
1111 <row>
1112 <entry><varname>initializing</varname></entry>
1113 <entry><para>Early bootup, before
1114 <filename>basic.target</filename> is reached
1115 or the <varname>maintenance</varname> state entered.
1116 </para></entry>
1117 <entry>&gt; 0</entry>
1118 </row>
1119 <row>
1120 <entry><varname>starting</varname></entry>
1121 <entry><para>Late bootup, before the job queue
1122 becomes idle for the first time, or one of the
1123 rescue targets are reached.</para></entry>
1124 <entry>&gt; 0</entry>
1125 </row>
1126 <row>
1127 <entry><varname>running</varname></entry>
1128 <entry><para>The system is fully
1129 operational.</para></entry>
1130 <entry>0</entry>
1131 </row>
1132 <row>
1133 <entry><varname>degraded</varname></entry>
1134 <entry><para>The system is operational but one or more
1135 units failed.</para></entry>
1136 <entry>&gt; 0</entry>
1137 </row>
1138 <row>
1139 <entry><varname>maintenance</varname></entry>
1140 <entry><para>The rescue or emergency target is
1141 active.</para></entry>
1142 <entry>&gt; 0</entry>
1143 </row>
1144 <row>
1145 <entry><varname>stopping</varname></entry>
1146 <entry><para>The manager is shutting
1147 down.</para></entry>
1148 <entry>&gt; 0</entry>
1149 </row>
1150 <row>
1151 <entry><varname>offline</varname></entry>
1152 <entry><para>The manager is not
1153 running. Specifically, this is the operational
1154 state if an incompatible program is running as
1155 system manager (PID 1).</para></entry>
1156 <entry>&gt; 0</entry>
1157 </row>
1158 <row>
1159 <entry><varname>unknown</varname></entry>
1160 <entry><para>The operational state could not be
1161 determined, due to lack of resources or another
1162 error cause.</para></entry>
1163 <entry>&gt; 0</entry>
1164 </row>
1165 </tbody>
1166 </tgroup>
1167 </table>
1168 </listitem>
1169 </varlistentry>
1170
1171 <varlistentry>
1172 <term><command>default</command></term>
1173
1174 <listitem>
1175 <para>Enter default mode. This is equivalent to <command>systemctl isolate default.target</command>. This
1176 operation is blocking by default, use <option>--no-block</option> to request asynchronous behavior.</para>
1177 </listitem>
1178 </varlistentry>
1179
1180 <varlistentry>
1181 <term><command>rescue</command></term>
1182
1183 <listitem>
1184 <para>Enter rescue mode. This is equivalent to <command>systemctl isolate rescue.target</command>. This
1185 operation is blocking by default, use <option>--no-block</option> to request asynchronous behavior.</para>
1186 </listitem>
1187 </varlistentry>
1188 <varlistentry>
1189 <term><command>emergency</command></term>
1190
1191 <listitem>
1192 <para>Enter emergency mode. This is equivalent to <command>systemctl isolate
1193 emergency.target</command>. This operation is blocking by default, use <option>--no-block</option> to
1194 request asynchronous behavior.</para>
1195 </listitem>
1196 </varlistentry>
1197 <varlistentry>
1198 <term><command>halt</command></term>
1199
1200 <listitem>
1201 <para>Shut down and halt the system. This is mostly equivalent to <command>systemctl start halt.target
1202 --job-mode=replace-irreversibly --no-block</command>, but also prints a wall message to all users. This command is
1203 asynchronous; it will return after the halt operation is enqueued, without waiting for it to complete. Note
1204 that this operation will simply halt the OS kernel after shutting down, leaving the hardware powered
1205 on. Use <command>systemctl poweroff</command> for powering off the system (see below).</para>
1206
1207 <para>If combined with <option>--force</option>, shutdown of all running services is skipped, however all
1208 processes are killed and all file systems are unmounted or mounted read-only, immediately followed by the
1209 system halt. If <option>--force</option> is specified twice, the operation is immediately executed without
1210 terminating any processes or unmounting any file systems. This may result in data loss. Note that when
1211 <option>--force</option> is specified twice the halt operation is executed by <command>systemctl</command>
1212 itself, and the system manager is not contacted. This means the command should succeed even when the system
1213 manager has crashed.</para>
1214 </listitem>
1215 </varlistentry>
1216 <varlistentry>
1217 <term><command>poweroff</command></term>
1218
1219 <listitem>
1220 <para>Shut down and power-off the system. This is mostly equivalent to <command>systemctl start
1221 poweroff.target --job-mode=replace-irreversibly --no-block</command>, but also prints a wall message to all
1222 users. This command is asynchronous; it will return after the power-off operation is enqueued, without
1223 waiting for it to complete.</para>
1224
1225 <para>If combined with <option>--force</option>, shutdown of all running services is skipped, however all
1226 processes are killed and all file systems are unmounted or mounted read-only, immediately followed by the
1227 powering off. If <option>--force</option> is specified twice, the operation is immediately executed without
1228 terminating any processes or unmounting any file systems. This may result in data loss. Note that when
1229 <option>--force</option> is specified twice the power-off operation is executed by
1230 <command>systemctl</command> itself, and the system manager is not contacted. This means the command should
1231 succeed even when the system manager has crashed.</para>
1232 </listitem>
1233 </varlistentry>
1234 <varlistentry>
1235 <term><command>reboot</command> <optional><replaceable>arg</replaceable></optional></term>
1236
1237 <listitem>
1238 <para>Shut down and reboot the system. This is mostly equivalent to <command>systemctl start reboot.target
1239 --job-mode=replace-irreversibly --no-block</command>, but also prints a wall message to all users. This
1240 command is asynchronous; it will return after the reboot operation is enqueued, without waiting for it to
1241 complete.</para>
1242
1243 <para>If combined with <option>--force</option>, shutdown of all running services is skipped, however all
1244 processes are killed and all file systems are unmounted or mounted read-only, immediately followed by the
1245 reboot. If <option>--force</option> is specified twice, the operation is immediately executed without
1246 terminating any processes or unmounting any file systems. This may result in data loss. Note that when
1247 <option>--force</option> is specified twice the reboot operation is executed by
1248 <command>systemctl</command> itself, and the system manager is not contacted. This means the command should
1249 succeed even when the system manager has crashed.</para>
1250
1251 <para>If the optional argument <replaceable>arg</replaceable> is given, it will be passed as the optional
1252 argument to the <citerefentry><refentrytitle>reboot</refentrytitle><manvolnum>2</manvolnum></citerefentry>
1253 system call. The value is architecture and firmware specific. As an example, <literal>recovery</literal>
1254 might be used to trigger system recovery, and <literal>fota</literal> might be used to trigger a
1255 <quote>firmware over the air</quote> update.</para>
1256 </listitem>
1257 </varlistentry>
1258
1259 <varlistentry>
1260 <term><command>kexec</command></term>
1261
1262 <listitem>
1263 <para>Shut down and reboot the system via <command>kexec</command>. This is equivalent to
1264 <command>systemctl start kexec.target --job-mode=replace-irreversibly --no-block</command>. This command is
1265 asynchronous; it will return after the reboot operation is enqueued, without waiting for it to
1266 complete.</para>
1267
1268 <para>If combined with <option>--force</option>, shutdown of all running services is skipped, however all
1269 processes are killed and all file systems are unmounted or mounted read-only, immediately followed by the
1270 reboot.</para>
1271 </listitem>
1272 </varlistentry>
1273
1274 <varlistentry>
1275 <term><command>exit</command> <optional><replaceable>EXIT_CODE</replaceable></optional></term>
1276
1277 <listitem>
1278 <para>Ask the service manager to quit. This is only supported for user service managers (i.e. in
1279 conjunction with the <option>--user</option> option) or in containers and is equivalent to
1280 <command>poweroff</command> otherwise. This command is asynchronous; it will return after the exit
1281 operation is enqueued, without waiting for it to complete.</para>
1282
1283 <para>The service manager will exit with the specified exit code, if
1284 <replaceable>EXIT_CODE</replaceable> is passed.</para>
1285 </listitem>
1286 </varlistentry>
1287
1288 <varlistentry>
1289 <term><command>switch-root</command> <replaceable>ROOT</replaceable> <optional><replaceable>INIT</replaceable></optional></term>
1290
1291 <listitem>
1292 <para>Switches to a different root directory and executes a new system manager process below it. This is
1293 intended for usage in initial RAM disks ("initrd"), and will transition from the initrd's system manager
1294 process (a.k.a. "init" process) to the main system manager process which is loaded from the actual host
1295 volume. This call takes two arguments: the directory that is to become the new root directory, and the path
1296 to the new system manager binary below it to execute as PID 1. If the latter is omitted or the empty
1297 string, a systemd binary will automatically be searched for and used as init. If the system manager path is
1298 omitted, equal to the empty string or identical to the path to the systemd binary, the state of the
1299 initrd's system manager process is passed to the main system manager, which allows later introspection of
1300 the state of the services involved in the initrd boot phase.</para>
1301 </listitem>
1302 </varlistentry>
1303
1304 <varlistentry>
1305 <term><command>suspend</command></term>
1306
1307 <listitem>
1308 <para>Suspend the system. This will trigger activation of the special target unit
1309 <filename>suspend.target</filename>. This command is asynchronous, and will return after the suspend
1310 operation is successfully enqueued. It will not wait for the suspend/resume cycle to complete.</para>
1311 </listitem>
1312 </varlistentry>
1313
1314 <varlistentry>
1315 <term><command>hibernate</command></term>
1316
1317 <listitem>
1318 <para>Hibernate the system. This will trigger activation of the special target unit
1319 <filename>hibernate.target</filename>. This command is asynchronous, and will return after the hibernation
1320 operation is successfully enqueued. It will not wait for the hibernate/thaw cycle to complete.</para>
1321 </listitem>
1322 </varlistentry>
1323
1324 <varlistentry>
1325 <term><command>hybrid-sleep</command></term>
1326
1327 <listitem>
1328 <para>Hibernate and suspend the system. This will trigger activation of the special target unit
1329 <filename>hybrid-sleep.target</filename>. This command is asynchronous, and will return after the hybrid
1330 sleep operation is successfully enqueued. It will not wait for the sleep/wake-up cycle to complete.</para>
1331 </listitem>
1332 </varlistentry>
1333
1334 <varlistentry>
1335 <term><command>suspend-then-hibernate</command></term>
1336
1337 <listitem>
1338 <para>Suspend the system and hibernate it after the delay specified in <filename>systemd-sleep.conf</filename>.
1339 This will trigger activation of the special target unit <filename>suspend-then-hibernate.target</filename>.
1340 This command is asynchronous, and will return after the hybrid sleep operation is successfully enqueued.
1341 It will not wait for the sleep/wake-up or hibernate/thaw cycle to complete.</para>
1342 </listitem>
1343 </varlistentry>
1344 </variablelist>
1345 </refsect2>
1346
1347 <refsect2>
1348 <title>Parameter Syntax</title>
1349
1350 <para>Unit commands listed above take either a single unit name (designated as <replaceable>UNIT</replaceable>),
1351 or multiple unit specifications (designated as <replaceable>PATTERN</replaceable>…). In the first case, the
1352 unit name with or without a suffix must be given. If the suffix is not specified (unit name is "abbreviated"),
1353 systemctl will append a suitable suffix, <literal>.service</literal> by default, and a type-specific suffix in
1354 case of commands which operate only on specific unit types. For example,
1355 <programlisting># systemctl start sshd</programlisting> and
1356 <programlisting># systemctl start sshd.service</programlisting>
1357 are equivalent, as are
1358 <programlisting># systemctl isolate default</programlisting>
1359 and
1360 <programlisting># systemctl isolate default.target</programlisting>
1361 Note that (absolute) paths to device nodes are automatically converted to device unit names, and other (absolute)
1362 paths to mount unit names.
1363 <programlisting># systemctl status /dev/sda
1364 # systemctl status /home</programlisting>
1365 are equivalent to:
1366 <programlisting># systemctl status dev-sda.device
1367 # systemctl status home.mount</programlisting>
1368 In the second case, shell-style globs will be matched against the primary names of all units currently in memory;
1369 literal unit names, with or without a suffix, will be treated as in the first case. This means that literal unit
1370 names always refer to exactly one unit, but globs may match zero units and this is not considered an
1371 error.</para>
1372
1373 <para>Glob patterns use
1374 <citerefentry project='man-pages'><refentrytitle>fnmatch</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
1375 so normal shell-style globbing rules are used, and
1376 <literal>*</literal>, <literal>?</literal>,
1377 <literal>[]</literal> may be used. See
1378 <citerefentry project='man-pages'><refentrytitle>glob</refentrytitle><manvolnum>7</manvolnum></citerefentry>
1379 for more details. The patterns are matched against the primary names of
1380 units currently in memory, and patterns which do not match anything
1381 are silently skipped. For example:
1382 <programlisting># systemctl stop sshd@*.service</programlisting>
1383 will stop all <filename>sshd@.service</filename> instances. Note that alias names of units, and units that aren't
1384 in memory are not considered for glob expansion.
1385 </para>
1386
1387 <para>For unit file commands, the specified <replaceable>UNIT</replaceable> should be the name of the unit file
1388 (possibly abbreviated, see above), or the absolute path to the unit file:
1389 <programlisting># systemctl enable foo.service</programlisting>
1390 or
1391 <programlisting># systemctl link /path/to/foo.service</programlisting>
1392 </para>
1393 </refsect2>
1394
1395 </refsect1>
1396
1397 <refsect1>
1398 <title>Options</title>
1399
1400 <para>The following options are understood:</para>
1401
1402 <variablelist>
1403 <varlistentry>
1404 <term><option>-t</option></term>
1405 <term><option>--type=</option></term>
1406
1407 <listitem>
1408 <para>The argument should be a comma-separated list of unit
1409 types such as <option>service</option> and
1410 <option>socket</option>.
1411 </para>
1412
1413 <para>If one of the arguments is a unit type, when listing
1414 units, limit display to certain unit types. Otherwise, units
1415 of all types will be shown.</para>
1416
1417 <para>As a special case, if one of the arguments is
1418 <option>help</option>, a list of allowed values will be
1419 printed and the program will exit.</para>
1420 </listitem>
1421 </varlistentry>
1422
1423 <varlistentry>
1424 <term><option>--state=</option></term>
1425
1426 <listitem>
1427 <para>The argument should be a comma-separated list of unit
1428 LOAD, SUB, or ACTIVE states. When listing units, show only
1429 those in the specified states. Use <option>--state=failed</option>
1430 to show only failed units.</para>
1431
1432 <para>As a special case, if one of the arguments is
1433 <option>help</option>, a list of allowed values will be
1434 printed and the program will exit.</para>
1435 </listitem>
1436 </varlistentry>
1437
1438 <varlistentry>
1439 <term><option>-p</option></term>
1440 <term><option>--property=</option></term>
1441
1442 <listitem>
1443 <para>When showing unit/job/manager properties with the
1444 <command>show</command> command, limit display to properties
1445 specified in the argument. The argument should be a
1446 comma-separated list of property names, such as
1447 <literal>MainPID</literal>. Unless specified, all known
1448 properties are shown. If specified more than once, all
1449 properties with the specified names are shown. Shell
1450 completion is implemented for property names.</para>
1451
1452 <para>For the manager itself,
1453 <command>systemctl show</command> will show all available
1454 properties. Those properties are documented in
1455 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
1456 </para>
1457
1458 <para>Properties for units vary by unit type, so showing any
1459 unit (even a non-existent one) is a way to list properties
1460 pertaining to this type. Similarly, showing any job will list
1461 properties pertaining to all jobs. Properties for units are
1462 documented in
1463 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1464 and the pages for individual unit types
1465 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1466 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1467 etc.</para>
1468 </listitem>
1469 </varlistentry>
1470
1471 <varlistentry>
1472 <term><option>-a</option></term>
1473 <term><option>--all</option></term>
1474
1475 <listitem>
1476 <para>When listing units with <command>list-units</command>, also show inactive units and
1477 units which are following other units. When showing unit/job/manager properties, show all
1478 properties regardless whether they are set or not.</para>
1479
1480 <para>To list all units installed in the file system, use the
1481 <command>list-unit-files</command> command instead.</para>
1482
1483 <para>When listing units with <command>list-dependencies</command>, recursively show
1484 dependencies of all dependent units (by default only dependencies of target units are
1485 shown).</para>
1486
1487 <para>When used with <command>status</command>, show journal messages in full, even if they include
1488 unprintable characters or are very long. By default, fields with unprintable characters are
1489 abbreviated as "blob data". (Note that the pager may escape unprintable characters again.)</para>
1490 </listitem>
1491 </varlistentry>
1492
1493 <varlistentry>
1494 <term><option>-r</option></term>
1495 <term><option>--recursive</option></term>
1496
1497 <listitem>
1498 <para>When listing units, also show units of local
1499 containers. Units of local containers will be prefixed with
1500 the container name, separated by a single colon character
1501 (<literal>:</literal>).</para>
1502 </listitem>
1503 </varlistentry>
1504
1505 <varlistentry>
1506 <term><option>--reverse</option></term>
1507
1508 <listitem>
1509 <para>Show reverse dependencies between units with
1510 <command>list-dependencies</command>, i.e. follow
1511 dependencies of type <varname>WantedBy=</varname>,
1512 <varname>RequiredBy=</varname>,
1513 <varname>PartOf=</varname>, <varname>BoundBy=</varname>,
1514 instead of <varname>Wants=</varname> and similar.
1515 </para>
1516 </listitem>
1517 </varlistentry>
1518
1519 <varlistentry>
1520 <term><option>--after</option></term>
1521
1522 <listitem>
1523 <para>With <command>list-dependencies</command>, show the
1524 units that are ordered before the specified unit. In other
1525 words, recursively list units following the
1526 <varname>After=</varname> dependency.</para>
1527
1528 <para>Note that any <varname>After=</varname> dependency is
1529 automatically mirrored to create a
1530 <varname>Before=</varname> dependency. Temporal dependencies
1531 may be specified explicitly, but are also created implicitly
1532 for units which are <varname>WantedBy=</varname> targets
1533 (see
1534 <citerefentry><refentrytitle>systemd.target</refentrytitle><manvolnum>5</manvolnum></citerefentry>),
1535 and as a result of other directives (for example
1536 <varname>RequiresMountsFor=</varname>). Both explicitly
1537 and implicitly introduced dependencies are shown with
1538 <command>list-dependencies</command>.</para>
1539
1540 <para>When passed to the <command>list-jobs</command> command, for each printed job show which other jobs are
1541 waiting for it. May be combined with <option>--before</option> to show both the jobs waiting for each job as
1542 well as all jobs each job is waiting for.</para>
1543 </listitem>
1544 </varlistentry>
1545
1546 <varlistentry>
1547 <term><option>--before</option></term>
1548
1549 <listitem>
1550 <para>With <command>list-dependencies</command>, show the
1551 units that are ordered after the specified unit. In other
1552 words, recursively list units following the
1553 <varname>Before=</varname> dependency.</para>
1554
1555 <para>When passed to the <command>list-jobs</command> command, for each printed job show which other jobs it
1556 is waiting for. May be combined with <option>--after</option> to show both the jobs waiting for each job as
1557 well as all jobs each job is waiting for.</para>
1558 </listitem>
1559 </varlistentry>
1560
1561 <varlistentry>
1562 <term><option>-l</option></term>
1563 <term><option>--full</option></term>
1564
1565 <listitem>
1566 <para>Do not ellipsize unit names, process tree entries,
1567 journal output, or truncate unit descriptions in the output
1568 of <command>status</command>, <command>list-units</command>,
1569 <command>list-jobs</command>, and
1570 <command>list-timers</command>.</para>
1571 <para>Also, show installation targets in the output of
1572 <command>is-enabled</command>.</para>
1573 </listitem>
1574 </varlistentry>
1575
1576 <varlistentry>
1577 <term><option>--value</option></term>
1578
1579 <listitem>
1580 <para>When printing properties with <command>show</command>,
1581 only print the value, and skip the property name and
1582 <literal>=</literal>.</para>
1583 </listitem>
1584 </varlistentry>
1585
1586 <varlistentry>
1587 <term><option>--show-types</option></term>
1588
1589 <listitem>
1590 <para>When showing sockets, show the type of the socket.</para>
1591 </listitem>
1592 </varlistentry>
1593
1594 <varlistentry>
1595 <term><option>--job-mode=</option></term>
1596
1597 <listitem>
1598 <para>When queuing a new job, this option controls how to deal with
1599 already queued jobs. It takes one of <literal>fail</literal>,
1600 <literal>replace</literal>,
1601 <literal>replace-irreversibly</literal>,
1602 <literal>isolate</literal>,
1603 <literal>ignore-dependencies</literal>,
1604 <literal>ignore-requirements</literal> or
1605 <literal>flush</literal>. Defaults to
1606 <literal>replace</literal>, except when the
1607 <command>isolate</command> command is used which implies the
1608 <literal>isolate</literal> job mode.</para>
1609
1610 <para>If <literal>fail</literal> is specified and a requested
1611 operation conflicts with a pending job (more specifically:
1612 causes an already pending start job to be reversed into a stop
1613 job or vice versa), cause the operation to fail.</para>
1614
1615 <para>If <literal>replace</literal> (the default) is
1616 specified, any conflicting pending job will be replaced, as
1617 necessary.</para>
1618
1619 <para>If <literal>replace-irreversibly</literal> is specified,
1620 operate like <literal>replace</literal>, but also mark the new
1621 jobs as irreversible. This prevents future conflicting
1622 transactions from replacing these jobs (or even being enqueued
1623 while the irreversible jobs are still pending). Irreversible
1624 jobs can still be cancelled using the <command>cancel</command>
1625 command. This job mode should be used on any transaction which
1626 pulls in <filename>shutdown.target</filename>.</para>
1627
1628 <para><literal>isolate</literal> is only valid for start
1629 operations and causes all other units to be stopped when the
1630 specified unit is started. This mode is always used when the
1631 <command>isolate</command> command is used.</para>
1632
1633 <para><literal>flush</literal> will cause all queued jobs to
1634 be canceled when the new job is enqueued.</para>
1635
1636 <para>If <literal>ignore-dependencies</literal> is specified,
1637 then all unit dependencies are ignored for this new job and
1638 the operation is executed immediately. If passed, no required
1639 units of the unit passed will be pulled in, and no ordering
1640 dependencies will be honored. This is mostly a debugging and
1641 rescue tool for the administrator and should not be used by
1642 applications.</para>
1643
1644 <para><literal>ignore-requirements</literal> is similar to
1645 <literal>ignore-dependencies</literal>, but only causes the
1646 requirement dependencies to be ignored, the ordering
1647 dependencies will still be honored.</para>
1648 </listitem>
1649
1650 </varlistentry>
1651
1652 <varlistentry>
1653 <term><option>-T</option></term>
1654 <term><option>--show-transaction</option></term>
1655
1656 <listitem>
1657 <para>When enqueuing a unit job (for example as effect of a <command>systemctl start</command>
1658 invocation or similar), show brief information about all jobs enqueued, covering both the requested
1659 job and any added because of unit dependencies. Note that the output will only include jobs
1660 immediately part of the transaction requested. It is possible that service start-up program code
1661 run as effect of the enqueued jobs might request further jobs to be pulled in. This means that
1662 completion of the listed jobs might ultimately entail more jobs than the listed ones.</para>
1663 </listitem>
1664 </varlistentry>
1665
1666 <varlistentry>
1667 <term><option>--fail</option></term>
1668
1669 <listitem>
1670 <para>Shorthand for <option>--job-mode=</option>fail.</para>
1671 <para>When used with the <command>kill</command> command,
1672 if no units were killed, the operation results in an error.
1673 </para>
1674 </listitem>
1675 </varlistentry>
1676
1677 <varlistentry>
1678 <term><option>-i</option></term>
1679 <term><option>--ignore-inhibitors</option></term>
1680
1681 <listitem>
1682 <para>When system shutdown or a sleep state is requested, ignore inhibitor locks. Applications can establish
1683 inhibitor locks to avoid that certain important operations (such as CD burning or suchlike) are interrupted
1684 by system shutdown or a sleep state. Any user may take these locks and privileged users may override these
1685 locks. If any locks are taken, shutdown and sleep state requests will normally fail (unless privileged) and a
1686 list of active locks is printed. However, if <option>--ignore-inhibitors</option> is specified, the
1687 established locks are ignored and not shown, and the operation attempted anyway, possibly requiring
1688 additional privileges.</para>
1689 </listitem>
1690 </varlistentry>
1691
1692 <varlistentry>
1693 <term><option>--dry-run</option></term>
1694
1695 <listitem>
1696 <para>Just print what would be done. Currently supported by verbs
1697 <command>halt</command>, <command>poweroff</command>, <command>reboot</command>,
1698 <command>kexec</command>, <command>suspend</command>, <command>hibernate</command>,
1699 <command>hybrid-sleep</command>, <command>suspend-then-hibernate</command>,
1700 <command>default</command>, <command>rescue</command>,
1701 <command>emergency</command>, and <command>exit</command>.</para>
1702 </listitem>
1703 </varlistentry>
1704
1705 <varlistentry>
1706 <term><option>-q</option></term>
1707 <term><option>--quiet</option></term>
1708
1709 <listitem>
1710 <para>Suppress printing of the results of various commands
1711 and also the hints about truncated log lines. This does not
1712 suppress output of commands for which the printed output is
1713 the only result (like <command>show</command>). Errors are
1714 always printed.</para>
1715 </listitem>
1716 </varlistentry>
1717
1718 <varlistentry>
1719 <term><option>--no-block</option></term>
1720
1721 <listitem>
1722 <para>Do not synchronously wait for the requested operation
1723 to finish. If this is not specified, the job will be
1724 verified, enqueued and <command>systemctl</command> will
1725 wait until the unit's start-up is completed. By passing this
1726 argument, it is only verified and enqueued. This option may not be
1727 combined with <option>--wait</option>.</para>
1728 </listitem>
1729 </varlistentry>
1730
1731 <varlistentry>
1732 <term><option>--wait</option></term>
1733
1734 <listitem>
1735 <para>Synchronously wait for started units to terminate again.
1736 This option may not be combined with <option>--no-block</option>.
1737 Note that this will wait forever if any given unit never terminates
1738 (by itself or by getting stopped explicitly); particularly services
1739 which use <literal>RemainAfterExit=yes</literal>.</para>
1740
1741 <para>When used with <command>is-system-running</command>, wait
1742 until the boot process is completed before returning.</para>
1743 </listitem>
1744 </varlistentry>
1745
1746 <xi:include href="user-system-options.xml" xpointer="user" />
1747 <xi:include href="user-system-options.xml" xpointer="system" />
1748
1749 <varlistentry>
1750 <term><option>--failed</option></term>
1751
1752 <listitem>
1753 <para>List units in failed state. This is equivalent to
1754 <option>--state=failed</option>.</para>
1755 </listitem>
1756 </varlistentry>
1757
1758 <varlistentry>
1759 <term><option>--no-wall</option></term>
1760
1761 <listitem>
1762 <para>Do not send wall message before halt, power-off and reboot.</para>
1763 </listitem>
1764 </varlistentry>
1765
1766 <varlistentry>
1767 <term><option>--global</option></term>
1768
1769 <listitem>
1770 <para>When used with <command>enable</command> and
1771 <command>disable</command>, operate on the global user
1772 configuration directory, thus enabling or disabling a unit
1773 file globally for all future logins of all users.</para>
1774 </listitem>
1775 </varlistentry>
1776
1777 <varlistentry>
1778 <term><option>--no-reload</option></term>
1779
1780 <listitem>
1781 <para>When used with <command>enable</command> and
1782 <command>disable</command>, do not implicitly reload daemon
1783 configuration after executing the changes.</para>
1784 </listitem>
1785 </varlistentry>
1786
1787 <varlistentry>
1788 <term><option>--no-ask-password</option></term>
1789
1790 <listitem>
1791 <para>When used with <command>start</command> and related
1792 commands, disables asking for passwords. Background services
1793 may require input of a password or passphrase string, for
1794 example to unlock system hard disks or cryptographic
1795 certificates. Unless this option is specified and the
1796 command is invoked from a terminal,
1797 <command>systemctl</command> will query the user on the
1798 terminal for the necessary secrets. Use this option to
1799 switch this behavior off. In this case, the password must be
1800 supplied by some other means (for example graphical password
1801 agents) or the service might fail. This also disables
1802 querying the user for authentication for privileged
1803 operations.</para>
1804 </listitem>
1805 </varlistentry>
1806
1807 <varlistentry>
1808 <term><option>--kill-who=</option></term>
1809
1810 <listitem>
1811 <para>When used with <command>kill</command>, choose which
1812 processes to send a signal to. Must be one of
1813 <option>main</option>, <option>control</option> or
1814 <option>all</option> to select whether to kill only the main
1815 process, the control process or all processes of the
1816 unit. The main process of the unit is the one that defines
1817 the life-time of it. A control process of a unit is one that
1818 is invoked by the manager to induce state changes of it. For
1819 example, all processes started due to the
1820 <varname>ExecStartPre=</varname>,
1821 <varname>ExecStop=</varname> or
1822 <varname>ExecReload=</varname> settings of service units are
1823 control processes. Note that there is only one control
1824 process per unit at a time, as only one state change is
1825 executed at a time. For services of type
1826 <varname>Type=forking</varname>, the initial process started
1827 by the manager for <varname>ExecStart=</varname> is a
1828 control process, while the process ultimately forked off by
1829 that one is then considered the main process of the unit (if
1830 it can be determined). This is different for service units
1831 of other types, where the process forked off by the manager
1832 for <varname>ExecStart=</varname> is always the main process
1833 itself. A service unit consists of zero or one main process,
1834 zero or one control process plus any number of additional
1835 processes. Not all unit types manage processes of these
1836 types however. For example, for mount units, control processes
1837 are defined (which are the invocations of
1838 <filename>&MOUNT_PATH;</filename> and
1839 <filename>&UMOUNT_PATH;</filename>), but no main process
1840 is defined. If omitted, defaults to
1841 <option>all</option>.</para>
1842 </listitem>
1843
1844 </varlistentry>
1845
1846 <varlistentry>
1847 <term><option>-s</option></term>
1848 <term><option>--signal=</option></term>
1849
1850 <listitem>
1851 <para>When used with <command>kill</command>, choose which
1852 signal to send to selected processes. Must be one of the
1853 well-known signal specifiers such as <constant>SIGTERM</constant>, <constant>SIGINT</constant> or
1854 <constant>SIGSTOP</constant>. If omitted, defaults to
1855 <option>SIGTERM</option>.</para>
1856 </listitem>
1857 </varlistentry>
1858
1859 <varlistentry>
1860 <term><option>--what=</option></term>
1861
1862 <listitem>
1863 <para>Select what type of per-unit resources to remove when the <command>clean</command> command is
1864 invoked, see below. Takes one of <constant>configuration</constant>, <constant>state</constant>,
1865 <constant>cache</constant>, <constant>logs</constant>, <constant>runtime</constant> to select the
1866 type of resource. This option may be specified more than once, in which case all specified resource
1867 types are removed. Also accepts the special value <constant>all</constant> as a shortcut for
1868 specifiying all five resource types. If this option is not specified defaults to the combination of
1869 <constant>cache</constant> and <constant>runtime</constant>, i.e. the two kinds of resources that
1870 are generally considered to be redundant and can be reconstructed on next invocation.</para>
1871 </listitem>
1872 </varlistentry>
1873
1874 <varlistentry>
1875 <term><option>-f</option></term>
1876 <term><option>--force</option></term>
1877
1878 <listitem>
1879 <para>When used with <command>enable</command>, overwrite
1880 any existing conflicting symlinks.</para>
1881
1882 <para>When used with <command>edit</command>, create all of the
1883 specified units which do not already exist.</para>
1884
1885 <para>When used with <command>halt</command>, <command>poweroff</command>, <command>reboot</command> or
1886 <command>kexec</command>, execute the selected operation without shutting down all units. However, all
1887 processes will be killed forcibly and all file systems are unmounted or remounted read-only. This is hence a
1888 drastic but relatively safe option to request an immediate reboot. If <option>--force</option> is specified
1889 twice for these operations (with the exception of <command>kexec</command>), they will be executed
1890 immediately, without terminating any processes or unmounting any file systems. Warning: specifying
1891 <option>--force</option> twice with any of these operations might result in data loss. Note that when
1892 <option>--force</option> is specified twice the selected operation is executed by
1893 <command>systemctl</command> itself, and the system manager is not contacted. This means the command should
1894 succeed even when the system manager has crashed.</para>
1895 </listitem>
1896 </varlistentry>
1897
1898 <varlistentry>
1899 <term><option>--message=</option></term>
1900
1901 <listitem>
1902 <para>When used with <command>halt</command>, <command>poweroff</command> or <command>reboot</command>, set a
1903 short message explaining the reason for the operation. The message will be logged together with the default
1904 shutdown message.</para>
1905 </listitem>
1906 </varlistentry>
1907
1908 <varlistentry>
1909 <term><option>--now</option></term>
1910
1911 <listitem>
1912 <para>When used with <command>enable</command>, the units
1913 will also be started. When used with <command>disable</command> or
1914 <command>mask</command>, the units will also be stopped. The start
1915 or stop operation is only carried out when the respective enable or
1916 disable operation has been successful.</para>
1917 </listitem>
1918 </varlistentry>
1919
1920 <varlistentry>
1921 <term><option>--root=</option></term>
1922
1923 <listitem>
1924 <para>When used with
1925 <command>enable</command>/<command>disable</command>/<command>is-enabled</command>
1926 (and related commands), use the specified root path when looking for unit
1927 files. If this option is present, <command>systemctl</command> will operate on
1928 the file system directly, instead of communicating with the <command>systemd</command>
1929 daemon to carry out changes.</para>
1930 </listitem>
1931
1932 </varlistentry>
1933
1934 <varlistentry>
1935 <term><option>--runtime</option></term>
1936
1937 <listitem>
1938 <para>When used with <command>enable</command>,
1939 <command>disable</command>, <command>edit</command>,
1940 (and related commands), make changes only temporarily, so
1941 that they are lost on the next reboot. This will have the
1942 effect that changes are not made in subdirectories of
1943 <filename>/etc</filename> but in <filename>/run</filename>,
1944 with identical immediate effects, however, since the latter
1945 is lost on reboot, the changes are lost too.</para>
1946
1947 <para>Similarly, when used with
1948 <command>set-property</command>, make changes only
1949 temporarily, so that they are lost on the next
1950 reboot.</para>
1951 </listitem>
1952 </varlistentry>
1953
1954 <varlistentry>
1955 <term><option>--preset-mode=</option></term>
1956
1957 <listitem>
1958 <para>Takes one of <literal>full</literal> (the default),
1959 <literal>enable-only</literal>,
1960 <literal>disable-only</literal>. When used with the
1961 <command>preset</command> or <command>preset-all</command>
1962 commands, controls whether units shall be disabled and
1963 enabled according to the preset rules, or only enabled, or
1964 only disabled.</para>
1965 </listitem>
1966 </varlistentry>
1967
1968 <varlistentry>
1969 <term><option>-n</option></term>
1970 <term><option>--lines=</option></term>
1971
1972 <listitem>
1973 <para>When used with <command>status</command>, controls the number of journal lines to show, counting from
1974 the most recent ones. Takes a positive integer argument, or 0 to disable journal output. Defaults to
1975 10.</para>
1976 </listitem>
1977 </varlistentry>
1978
1979 <varlistentry>
1980 <term><option>-o</option></term>
1981 <term><option>--output=</option></term>
1982
1983 <listitem>
1984 <para>When used with <command>status</command>, controls the
1985 formatting of the journal entries that are shown. For the
1986 available choices, see
1987 <citerefentry><refentrytitle>journalctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
1988 Defaults to <literal>short</literal>.</para>
1989 </listitem>
1990 </varlistentry>
1991
1992 <varlistentry>
1993 <term><option>--firmware-setup</option></term>
1994
1995 <listitem>
1996 <para>When used with the <command>reboot</command> command, indicate to the system's firmware to reboot into
1997 the firmware setup interface. Note that this functionality is not available on all systems.</para>
1998 </listitem>
1999 </varlistentry>
2000
2001 <varlistentry>
2002 <term><option>--boot-loader-menu=</option></term>
2003
2004 <listitem>
2005 <para>When used with the <command>reboot</command> command, indicate to the system's boot loader to show the
2006 boot loader menu on the following boot. Takes a time value as parameter — indicating the menu time-out. Pass
2007 zero in order to disable the menu time-out. Note that not all boot loaders support this
2008 functionality.</para>
2009 </listitem>
2010 </varlistentry>
2011
2012 <varlistentry>
2013 <term><option>--boot-loader-entry=</option></term>
2014
2015 <listitem>
2016 <para>When used with the <command>reboot</command> command, indicate to the system's boot loader to boot into
2017 a specific boot loader entry on the following boot. Takes a boot loader entry identifier as argument, or
2018 <literal>help</literal> in order to list available entries. Note that not all boot loaders support this
2019 functionality.</para>
2020 </listitem>
2021 </varlistentry>
2022
2023 <varlistentry>
2024 <term><option>--plain</option></term>
2025
2026 <listitem>
2027 <para>When used with <command>list-dependencies</command>,
2028 <command>list-units</command> or <command>list-machines</command>,
2029 the output is printed as a list instead of a tree, and the bullet
2030 circles are omitted.</para>
2031 </listitem>
2032 </varlistentry>
2033
2034 <xi:include href="user-system-options.xml" xpointer="host" />
2035 <xi:include href="user-system-options.xml" xpointer="machine" />
2036
2037 <xi:include href="standard-options.xml" xpointer="no-pager" />
2038 <xi:include href="standard-options.xml" xpointer="no-legend" />
2039 <xi:include href="standard-options.xml" xpointer="help" />
2040 <xi:include href="standard-options.xml" xpointer="version" />
2041 </variablelist>
2042 </refsect1>
2043
2044 <refsect1>
2045 <title>Exit status</title>
2046
2047 <para>On success, 0 is returned, a non-zero failure code otherwise.</para>
2048
2049 <para><command>systemctl</command> uses the return codes defined by LSB, as defined in
2050 <ulink url="http://refspecs.linuxbase.org/LSB_3.0.0/LSB-PDA/LSB-PDA/iniscrptact.html">LSB 3.0.0</ulink>.
2051 </para>
2052
2053 <table>
2054 <title>LSB return codes</title>
2055
2056 <tgroup cols='3'>
2057 <thead>
2058 <row>
2059 <entry>Value</entry>
2060 <entry>Description in LSB</entry>
2061 <entry>Use in systemd</entry>
2062 </row>
2063 </thead>
2064 <tbody>
2065 <row>
2066 <entry><constant>0</constant></entry>
2067 <entry>"program is running or service is OK"</entry>
2068 <entry>unit is active</entry>
2069 </row>
2070 <row>
2071 <entry><constant>1</constant></entry>
2072 <entry>"program is dead and <filename>/var/run</filename> pid file exists"</entry>
2073 <entry>unit <emphasis>not</emphasis> failed (used by <command>is-failed</command>)</entry>
2074 </row>
2075 <row>
2076 <entry><constant>2</constant></entry>
2077 <entry>"program is dead and <filename>/var/lock</filename> lock file exists"</entry>
2078 <entry>unused</entry>
2079 </row>
2080 <row>
2081 <entry><constant>3</constant></entry>
2082 <entry>"program is not running"</entry>
2083 <entry>unit is not active</entry>
2084 </row>
2085 <row>
2086 <entry><constant>4</constant></entry>
2087 <entry>"program or service status is unknown"</entry>
2088 <entry>no such unit</entry>
2089 </row>
2090 </tbody>
2091 </tgroup>
2092 </table>
2093
2094 <para>The mapping of LSB service states to systemd unit states is imperfect, so it is better to
2095 not rely on those return values but to look for specific unit states and substates instead.
2096 </para>
2097 </refsect1>
2098
2099 <refsect1>
2100 <title>Environment</title>
2101
2102 <variablelist class='environment-variables'>
2103 <varlistentry>
2104 <term><varname>$SYSTEMD_EDITOR</varname></term>
2105
2106 <listitem><para>Editor to use when editing units; overrides
2107 <varname>$EDITOR</varname> and <varname>$VISUAL</varname>. If neither
2108 <varname>$SYSTEMD_EDITOR</varname> nor <varname>$EDITOR</varname> nor
2109 <varname>$VISUAL</varname> are present or if it is set to an empty
2110 string or if their execution failed, systemctl will try to execute well
2111 known editors in this order:
2112 <citerefentry project='die-net'><refentrytitle>editor</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2113 <citerefentry project='die-net'><refentrytitle>nano</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2114 <citerefentry project='die-net'><refentrytitle>vim</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2115 <citerefentry project='die-net'><refentrytitle>vi</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
2116 </para></listitem>
2117 </varlistentry>
2118 </variablelist>
2119 <xi:include href="less-variables.xml" xpointer="pager"/>
2120 <xi:include href="less-variables.xml" xpointer="less"/>
2121 <xi:include href="less-variables.xml" xpointer="lesscharset"/>
2122 </refsect1>
2123
2124 <refsect1>
2125 <title>See Also</title>
2126 <para>
2127 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2128 <citerefentry><refentrytitle>journalctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2129 <citerefentry><refentrytitle>loginctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2130 <citerefentry><refentrytitle>machinectl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2131 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
2132 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
2133 <citerefentry><refentrytitle>systemd.special</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
2134 <citerefentry project='man-pages'><refentrytitle>wall</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2135 <citerefentry><refentrytitle>systemd.preset</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
2136 <citerefentry><refentrytitle>systemd.generator</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
2137 <citerefentry project='man-pages'><refentrytitle>glob</refentrytitle><manvolnum>7</manvolnum></citerefentry>
2138 </para>
2139 </refsect1>
2140
2141 </refentry>