1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
|
'\" t
.TH "SYSTEMD\&.SPECIAL" "7" "" "systemd 254" "systemd.special"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
systemd.special \- Special systemd units
.SH "SYNOPSIS"
.PP
basic\&.target,
bluetooth\&.target,
cryptsetup\-pre\&.target,
cryptsetup\&.target,
veritysetup\-pre\&.target,
veritysetup\&.target,
ctrl\-alt\-del\&.target,
blockdev@\&.target,
boot\-complete\&.target,
default\&.target,
emergency\&.target,
exit\&.target,
factory\-reset\&.target,
final\&.target,
first\-boot\-complete\&.target,
getty\&.target,
getty\-pre\&.target,
graphical\&.target,
halt\&.target,
hibernate\&.target,
hybrid\-sleep\&.target,
suspend\-then\-hibernate\&.target,
initrd\&.target,
initrd\-fs\&.target,
initrd\-root\-device\&.target,
initrd\-root\-fs\&.target,
initrd\-usr\-fs\&.target,
integritysetup\-pre\&.target,
integritysetup\&.target,
kbrequest\&.target,
kexec\&.target,
local\-fs\-pre\&.target,
local\-fs\&.target,
machines\&.target
multi\-user\&.target,
network\-online\&.target,
network\-pre\&.target,
network\&.target,
nss\-lookup\&.target,
nss\-user\-lookup\&.target,
paths\&.target,
poweroff\&.target,
printer\&.target,
reboot\&.target,
remote\-cryptsetup\&.target,
remote\-veritysetup\&.target,
remote\-fs\-pre\&.target,
remote\-fs\&.target,
rescue\&.target,
rpcbind\&.target,
runlevel2\&.target,
runlevel3\&.target,
runlevel4\&.target,
runlevel5\&.target,
shutdown\&.target,
sigpwr\&.target,
sleep\&.target,
slices\&.target,
smartcard\&.target,
sockets\&.target,
soft\-reboot\&.target,
sound\&.target,
suspend\&.target,
swap\&.target,
sysinit\&.target,
system\-update\&.target,
system\-update\-pre\&.target,
time\-set\&.target,
time\-sync\&.target,
timers\&.target,
umount\&.target,
usb\-gadget\&.target,
\-\&.slice,
system\&.slice,
user\&.slice,
machine\&.slice,
\-\&.mount,
dbus\&.service,
dbus\&.socket,
display\-manager\&.service,
init\&.scope,
syslog\&.socket,
system\-update\-cleanup\&.service
.SH "DESCRIPTION"
.PP
A few units are treated specially by systemd\&. Many of them have special internal semantics and cannot be renamed, while others simply have a standard meaning and should be present on all systems\&.
.SH "UNITS MANAGED BY THE SYSTEM SERVICE MANAGER"
.SS "Special System Units"
.PP
\-\&.mount
.RS 4
The root mount point, i\&.e\&. the mount unit for the
/
path\&. This unit is unconditionally active, during the entire time the system is up, as this mount point is where the basic userspace is running from\&.
.RE
.PP
basic\&.target
.RS 4
A special target unit covering basic boot\-up\&.
.sp
systemd automatically adds dependency of the type
\fIAfter=\fR
for this target unit to all services (except for those with
\fIDefaultDependencies=no\fR)\&.
.sp
Usually, this should pull\-in all local mount points plus
/var/,
/tmp/
and
/var/tmp/, swap devices, sockets, timers, path units and other basic initialization necessary for general purpose daemons\&. The mentioned mount points are special cased to allow them to be remote\&.
.sp
This target usually does not pull in any non\-target units directly, but rather does so indirectly via other early boot targets\&. It is instead meant as a synchronization point for late boot services\&. Refer to
\fBbootup\fR(7)
for details on the targets involved\&.
.RE
.PP
boot\-complete\&.target
.RS 4
This target is intended as generic synchronization point for services that shall determine or act on whether the boot process completed successfully\&. Order units that are required to succeed for a boot process to be considered successful before this unit, and add a
\fIRequires=\fR
dependency from the target unit to them\&. Order units that shall only run when the boot process is considered successful after the target unit and pull in the target from it, also with
\fIRequires=\fR\&. Note that by default this target unit is not part of the initial boot transaction, but is supposed to be pulled in only if required by units that want to run only on successful boots\&.
.sp
See
\fBsystemd-boot-check-no-failures.service\fR(8)
for a service that implements a generic system health check and orders itself before
boot\-complete\&.target\&.
.sp
See
\fBsystemd-bless-boot.service\fR(8)
for a service that propagates boot success information to the boot loader, and orders itself after
boot\-complete\&.target\&.
.RE
.PP
ctrl\-alt\-del\&.target
.RS 4
systemd starts this target whenever Control+Alt+Del is pressed on the console\&. Usually, this should be aliased (symlinked) to
reboot\&.target\&.
.RE
.PP
cryptsetup\&.target
.RS 4
A target that pulls in setup services for all encrypted block devices\&.
.RE
.PP
veritysetup\&.target
.RS 4
A target that pulls in setup services for all verity integrity protected block devices\&.
.RE
.PP
dbus\&.service
.RS 4
A special unit for the D\-Bus bus daemon\&. As soon as this service is fully started up systemd will connect to it and register its service\&.
.RE
.PP
dbus\&.socket
.RS 4
A special unit for the D\-Bus system bus socket\&. All units with
\fIType=dbus\fR
automatically gain a dependency on this unit\&.
.RE
.PP
default\&.target
.RS 4
The default unit systemd starts at bootup\&. Usually, this should be aliased (symlinked) to
multi\-user\&.target
or
graphical\&.target\&. See
\fBbootup\fR(7)
for more discussion\&.
.sp
The default unit systemd starts at bootup can be overridden with the
\fIsystemd\&.unit=\fR
kernel command line option, or more conveniently, with the short names like
\fIsingle\fR,
\fIrescue\fR,
\fI1\fR,
\fI3\fR,
\fI5\fR, \&...; see
\fBsystemd\fR(1)\&.
.RE
.PP
display\-manager\&.service
.RS 4
The display manager service\&. Usually, this should be aliased (symlinked) to
gdm\&.service
or a similar display manager service\&.
.RE
.PP
emergency\&.target
.RS 4
A special target unit that starts an emergency shell on the main console\&. This target does not pull in other services or mounts\&. It is the most minimal version of starting the system in order to acquire an interactive shell; the only processes running are usually just the system manager (PID 1) and the shell process\&. This unit may be used by specifying
\fIemergency\fR
on the kernel command line; it is also used when a file system check on a required file system fails and boot\-up cannot continue\&. Compare with
rescue\&.target, which serves a similar purpose, but also starts the most basic services and mounts all file systems\&.
.sp
In many ways booting into
emergency\&.target
is similar to the effect of booting with
"init=/bin/sh"
on the kernel command line, except that emergency mode provides you with the full system and service manager, and allows starting individual units in order to continue the boot process in steps\&.
.sp
Note that depending on how
emergency\&.target
is reached, the root file system might be mounted read\-only or read\-write (no remounting is done specially for this target)\&. For example, the system may boot with root mounted read\-only when
\fIro\fR
is used on the kernel command line and remain this way for
emergency\&.target, or the system may transition to
emergency\&.target
after the system has been partially booted and disks have already been remounted read\-write\&.
.RE
.PP
exit\&.target
.RS 4
A special service unit for shutting down the system or user service manager\&. It is equivalent to
poweroff\&.target
on non\-container systems, and also works in containers\&.
.sp
systemd will start this unit when it receives the
\fBSIGTERM\fR
or
\fBSIGINT\fR
signal when running as user service daemon\&.
.sp
Normally, this (indirectly) pulls in
shutdown\&.target, which in turn should be conflicted by all units that want to be scheduled for shutdown when the service manager starts to exit\&.
.RE
.PP
factory\-reset\&.target
.RS 4
A special target to trigger a factory reset\&.
.RE
.PP
final\&.target
.RS 4
A special target unit that is used during the shutdown logic and may be used to pull in late services after all normal services are already terminated and all mounts unmounted\&.
.RE
.PP
getty\&.target
.RS 4
A special target unit that pulls in statically configured local TTY
getty
instances\&.
.RE
.PP
graphical\&.target
.RS 4
A special target unit for setting up a graphical login screen\&. This pulls in
multi\-user\&.target\&.
.sp
Units that are needed for graphical logins shall add
\fIWants=\fR
dependencies for their unit to this unit (or
multi\-user\&.target) during installation\&. This is best configured via
\fIWantedBy=graphical\&.target\fR
in the unit\*(Aqs [Install] section\&.
.RE
.PP
hibernate\&.target
.RS 4
A special target unit for hibernating the system\&. This pulls in
sleep\&.target\&.
.RE
.PP
hybrid\-sleep\&.target
.RS 4
A special target unit for hibernating and suspending the system at the same time\&. This pulls in
sleep\&.target\&.
.RE
.PP
suspend\-then\-hibernate\&.target
.RS 4
A special target unit for suspending the system for a period of time, waking it and putting it into hibernate\&. This pulls in
sleep\&.target\&.
.RE
.PP
halt\&.target
.RS 4
A special target unit for shutting down and halting the system\&. Note that this target is distinct from
poweroff\&.target
in that it generally really just halts the system rather than powering it down\&.
.sp
Applications wanting to halt the system should not start this unit directly, but should instead execute
\fBsystemctl halt\fR
(possibly with the
\fB\-\-no\-block\fR
option) or call
\fBsystemd\fR(1)\*(Aqs
\fBorg\&.freedesktop\&.systemd1\&.Manager\&.Halt\fR
D\-Bus method directly\&.
.RE
.PP
init\&.scope
.RS 4
This scope unit is where the system and service manager (PID 1) itself resides\&. It is active as long as the system is running\&.
.RE
.PP
initrd\&.target
.RS 4
This is the default target in the initrd, similar to
default\&.target
in the main system\&. It is used to mount the real root and transition to it\&. See
\fBbootup\fR(7)
for more discussion\&.
.RE
.PP
initrd\-fs\&.target
.RS 4
\fBsystemd-fstab-generator\fR(3)
automatically adds dependencies of type
\fIBefore=\fR
to
sysroot\-usr\&.mount
and all mount points found in
/etc/fstab
that have the
\fBx\-initrd\&.mount\fR
mount option set and do not have the
\fBnoauto\fR
mount option set\&. It is also indirectly ordered after
sysroot\&.mount\&. Thus, once this target is reached the
/sysroot/
hierarchy is fully set up, in preparation for the transition to the host OS\&.
.RE
.PP
initrd\-root\-device\&.target
.RS 4
A special initrd target unit that is reached when the root filesystem device is available, but before it has been mounted\&.
\fBsystemd-fstab-generator\fR(3)
and
\fBsystemd-gpt-auto-generator\fR(3)
automatically setup the appropriate dependencies to make this happen\&.
.RE
.PP
initrd\-root\-fs\&.target
.RS 4
\fBsystemd-fstab-generator\fR(3)
automatically adds dependencies of type
\fIBefore=\fR
to the
sysroot\&.mount
unit, which is generated from the kernel command line\*(Aqs
\fIroot=\fR
setting (or equivalent)\&.
.RE
.PP
initrd\-usr\-fs\&.target
.RS 4
\fBsystemd-fstab-generator\fR(3)
automatically adds dependencies of type
\fIBefore=\fR
to the
sysusr\-usr\&.mount
unit, which is generated from the kernel command line\*(Aqs
\fIusr=\fR
switch\&. Services may order themselves after this target unit in order to run once the
/sysusr/
hierarchy becomes available, on systems that come up initially without a root file system, but with an initialized
/usr/
and need to access that before setting up the root file system to ultimately switch to\&. On systems where
\fIusr=\fR
is not used this target is ordered after
sysroot\&.mount
and thus mostly equivalent to
initrd\-root\-fs\&.target\&. In effect on any system once this target is reached the file system backing
/usr/
is mounted, though possibly at two different locations, either below the
/sysusr/
or the
/sysroot/
hierarchies\&.
.RE
.PP
kbrequest\&.target
.RS 4
systemd starts this target whenever Alt+ArrowUp is pressed on the console\&. Note that any user with physical access to the machine will be able to do this, without authentication, so this should be used carefully\&.
.RE
.PP
kexec\&.target
.RS 4
A special target unit for shutting down and rebooting the system via kexec\&.
.sp
Applications wanting to reboot the system should not start this unit directly, but should instead execute
\fBsystemctl kexec\fR
(possibly with the
\fB\-\-no\-block\fR
option) or call
\fBsystemd-logind\fR(8)\*(Aqs
\fBorg\&.freedesktop\&.login1\&.Manager\&.RebootWithFlags()\fR
D\-Bus method directly\&.
.sp
See
\fBsystemd-kexec.service\fR(8)
for further details of the operation this target pulls in\&.
.RE
.PP
local\-fs\&.target
.RS 4
\fBsystemd-fstab-generator\fR(3)
automatically adds dependencies of type
\fIBefore=\fR
to all mount units that refer to local mount points for this target unit\&. In addition, it adds dependencies of type
\fIWants=\fR
to this target unit for those mounts listed in
/etc/fstab
that have the
\fBauto\fR
mount option set\&.
.RE
.PP
machines\&.target
.RS 4
A standard target unit for starting all the containers and other virtual machines\&. See
systemd\-nspawn@\&.service
for an example\&.
.RE
.PP
multi\-user\&.target
.RS 4
A special target unit for setting up a multi\-user system (non\-graphical)\&. This is pulled in by
graphical\&.target\&.
.sp
Units that are needed for a multi\-user system shall add
\fIWants=\fR
dependencies for their unit to this unit during installation\&. This is best configured via
\fIWantedBy=multi\-user\&.target\fR
in the unit\*(Aqs [Install] section\&.
.RE
.PP
network\-online\&.target
.RS 4
Units that strictly require a configured network connection should pull in
network\-online\&.target
(via a
\fIWants=\fR
type dependency) and order themselves after it\&. This target unit is intended to pull in a service that delays further execution until the network is sufficiently set up\&. What precisely this requires is left to the implementation of the network managing service\&.
.sp
Note the distinction between this unit and
network\&.target\&. This unit is an active unit (i\&.e\&. pulled in by the consumer rather than the provider of this functionality) and pulls in a service which possibly adds substantial delays to further execution\&. In contrast,
network\&.target
is a passive unit (i\&.e\&. pulled in by the provider of the functionality, rather than the consumer) that usually does not delay execution much\&. Usually,
network\&.target
is part of the boot of most systems, while
network\-online\&.target
is not, except when at least one unit requires it\&. Also see
\m[blue]\fBRunning Services After the Network Is Up\fR\m[]\&\s-2\u[1]\d\s+2
for more information\&.
.sp
All mount units for remote network file systems automatically pull in this unit, and order themselves after it\&. Note that networking daemons that simply
\fIprovide\fR
functionality to other hosts (as opposed to
\fIconsume\fR
functionality of other hosts) generally do not need to pull this in\&.
.sp
systemd automatically adds dependencies of type
\fIWants=\fR
and
\fIAfter=\fR
for this target unit to all SysV init script service units with an LSB header referring to the
"$network"
facility\&.
.sp
Note that this unit is only useful during the original system start\-up logic\&. After the system has completed booting up, it will not track the online state of the system anymore\&. Due to this it cannot be used as a network connection monitor concept, it is purely a one\-time system start\-up concept\&.
.RE
.PP
paths\&.target
.RS 4
A special target unit that sets up all path units (see
\fBsystemd.path\fR(5)
for details) that shall be active after boot\&.
.sp
It is recommended that path units installed by applications get pulled in via
\fIWants=\fR
dependencies from this unit\&. This is best configured via a
\fIWantedBy=paths\&.target\fR
in the path unit\*(Aqs [Install] section\&.
.RE
.PP
poweroff\&.target
.RS 4
A special target unit for shutting down and powering off the system\&.
.sp
Applications wanting to power off the system should not start this unit directly, but should instead execute
\fBsystemctl poweroff\fR
(possibly with the
\fB\-\-no\-block\fR
option) or call
\fBsystemd-logind\fR(8)\*(Aqs
\fBorg\&.freedesktop\&.login1\&.Manager\&.PowerOff\fR
D\-Bus method directly\&.
.sp
runlevel0\&.target
is an alias for this target unit, for compatibility with SysV\&.
.RE
.PP
reboot\&.target
.RS 4
A special target unit for shutting down and rebooting the system\&.
.sp
Applications wanting to reboot the system should not start this unit directly, but should instead execute
\fBsystemctl reboot\fR
(possibly with the
\fB\-\-no\-block\fR
option) or call
\fBsystemd-logind\fR(8)\*(Aqs
\fBorg\&.freedesktop\&.login1\&.Manager\&.Reboot()\fR
D\-Bus method directly\&.
.sp
See
\fBsystemd-reboot.service\fR(8)
for further details of the operation this target pulls in\&.
.sp
runlevel6\&.target
is an alias for this target unit, for compatibility with SysV\&.
.RE
.PP
remote\-cryptsetup\&.target
.RS 4
Similar to
cryptsetup\&.target, but for encrypted devices which are accessed over the network\&. It is used for
\fBcrypttab\fR(8)
entries marked with
\fB_netdev\fR\&.
.RE
.PP
remote\-veritysetup\&.target
.RS 4
Similar to
veritysetup\&.target, but for verity integrity protected devices which are accessed over the network\&. It is used for
\fBveritytab\fR(8)
entries marked with
\fB_netdev\fR\&.
.RE
.PP
remote\-fs\&.target
.RS 4
Similar to
local\-fs\&.target, but for remote mount points\&.
.sp
systemd automatically adds dependencies of type
\fIAfter=\fR
for this target unit to all SysV init script service units with an LSB header referring to the
"$remote_fs"
facility\&.
.RE
.PP
rescue\&.target
.RS 4
A special target unit that pulls in the base system (including system mounts) and spawns a rescue shell\&. Isolate to this target in order to administer the system in single\-user mode with all file systems mounted but with no services running, except for the most basic\&. Compare with
emergency\&.target, which is much more reduced and does not provide the file systems or most basic services\&. Compare with
multi\-user\&.target, this target could be seen as
single\-user\&.target\&.
.sp
runlevel1\&.target
is an alias for this target unit, for compatibility with SysV\&.
.sp
Use the
"systemd\&.unit=rescue\&.target"
kernel command line option to boot into this mode\&. A short alias for this kernel command line option is
"1", for compatibility with SysV\&.
.RE
.PP
runlevel2\&.target, runlevel3\&.target, runlevel4\&.target, runlevel5\&.target
.RS 4
These are targets that are called whenever the SysV compatibility code asks for runlevel 2, 3, 4, 5, respectively\&. It is a good idea to make this an alias for (i\&.e\&. symlink to)
graphical\&.target
(for runlevel 5) or
multi\-user\&.target
(the others)\&.
.RE
.PP
shutdown\&.target
.RS 4
A special target unit that terminates the services on system shutdown\&.
.sp
Services that shall be terminated on system shutdown shall add
\fIConflicts=\fR
and
\fIBefore=\fR
dependencies to this unit for their service unit, which is implicitly done when
\fIDefaultDependencies=yes\fR
is set (the default)\&.
.RE
.PP
sigpwr\&.target
.RS 4
A special target that is started when systemd receives the SIGPWR process signal, which is normally sent by the kernel or UPS daemons when power fails\&.
.RE
.PP
sleep\&.target
.RS 4
A special target unit that is pulled in by
suspend\&.target,
hibernate\&.target
and
hybrid\-sleep\&.target
and may be used to hook units into the sleep state logic\&.
.RE
.PP
slices\&.target
.RS 4
A special target unit that sets up all slice units (see
\fBsystemd.slice\fR(5)
for details) that shall always be active after boot\&. By default the generic
system\&.slice
slice unit as well as the root slice unit
\-\&.slice
are pulled in and ordered before this unit (see below)\&.
.sp
Adding slice units to
slices\&.target
is generally not necessary\&. Instead, when some unit that uses
\fISlice=\fR
is started, the specified slice will be started automatically\&. Adding
\fIWantedBy=slices\&.target\fR
lines to the [Install] section should only be done for units that need to be always active\&. In that case care needs to be taken to avoid creating a loop through the automatic dependencies on "parent" slices\&.
.RE
.PP
sockets\&.target
.RS 4
A special target unit that sets up all socket units (see
\fBsystemd.socket\fR(5)
for details) that shall be active after boot\&.
.sp
Services that can be socket\-activated shall add
\fIWants=\fR
dependencies to this unit for their socket unit during installation\&. This is best configured via a
\fIWantedBy=sockets\&.target\fR
in the socket unit\*(Aqs [Install] section\&.
.RE
.PP
soft\-reboot\&.target
.RS 4
A special target unit for shutting down and rebooting the userspace of the system (leaving the kernel running)\&.
.sp
Applications wanting to reboot the system should not start this unit directly, but should instead execute
\fBsystemctl soft\-reboot\fR
(possibly with the
\fB\-\-no\-block\fR
option) or call
\fBsystemd-logind\fR(8)\*(Aqs
\fBorg\&.freedesktop\&.login1\&.Manager\&.RebootWithFlags()\fR
D\-Bus method directly\&.
.sp
See
\fBsystemd-soft-reboot.service\fR(8)
for further details of the operation this target pulls in\&.
.RE
.PP
suspend\&.target
.RS 4
A special target unit for suspending the system\&. This pulls in
sleep\&.target\&.
.RE
.PP
swap\&.target
.RS 4
Similar to
local\-fs\&.target, but for swap partitions and swap files\&.
.RE
.PP
sysinit\&.target
.RS 4
systemd automatically adds dependencies of the types
\fIRequires=\fR
and
\fIAfter=\fR
for this target unit to all services (except for those with
\fIDefaultDependencies=no\fR)\&.
.sp
This target pulls in the services required for system initialization\&. System services pulled in by this target should declare
\fIDefaultDependencies=no\fR
and specify all their dependencies manually, including access to anything more than a read only root filesystem\&. For details on the dependencies of this target, refer to
\fBbootup\fR(7)\&.
.RE
.PP
syslog\&.socket
.RS 4
The socket unit syslog implementations should listen on\&. All userspace log messages will be made available on this socket\&. For more information about syslog integration, please consult the
\m[blue]\fBSyslog Interface\fR\m[]\&\s-2\u[2]\d\s+2
document\&.
.RE
.PP
system\-update\&.target, system\-update\-pre\&.target, system\-update\-cleanup\&.service
.RS 4
A special target unit that is used for offline system updates\&.
\fBsystemd-system-update-generator\fR(8)
will redirect the boot process to this target if
/system\-update
or
/etc/system\-update
exists\&. For more information see
\fBsystemd.offline-updates\fR(7)\&.
.sp
Updates should happen before the
system\-update\&.target
is reached, and the services which implement them should cause the machine to reboot\&. The main units executing the update should order themselves after
system\-update\-pre\&.target
but not pull it in\&. Services which want to run during system updates only, but before the actual system update is executed should order themselves before this unit and pull it in\&. As a safety measure, if this does not happen, and
/system\-update
or
/etc/system\-update
still exists after
system\-update\&.target
is reached,
system\-update\-cleanup\&.service
will remove the symlinks and reboot the machine\&.
.RE
.PP
timers\&.target
.RS 4
A special target unit that sets up all timer units (see
\fBsystemd.timer\fR(5)
for details) that shall be active after boot\&.
.sp
It is recommended that timer units installed by applications get pulled in via
\fIWants=\fR
dependencies from this unit\&. This is best configured via
\fIWantedBy=timers\&.target\fR
in the timer unit\*(Aqs [Install] section\&.
.RE
.PP
umount\&.target
.RS 4
A special target unit that unmounts all mount and automount points on system shutdown\&.
.sp
Mounts that shall be unmounted on system shutdown shall add Conflicts dependencies to this unit for their mount unit, which is implicitly done when
\fIDefaultDependencies=yes\fR
is set (the default)\&.
.RE
.SS "Special System Units for Devices"
.PP
Some target units are automatically pulled in as devices of certain kinds show up in the system\&. These may be used to automatically activate various services based on the specific type of the available hardware\&.
.PP
bluetooth\&.target
.RS 4
This target is started automatically as soon as a Bluetooth controller is plugged in or becomes available at boot\&.
.sp
This may be used to pull in Bluetooth management daemons dynamically when Bluetooth hardware is found\&.
.RE
.PP
printer\&.target
.RS 4
This target is started automatically as soon as a printer is plugged in or becomes available at boot\&.
.sp
This may be used to pull in printer management daemons dynamically when printer hardware is found\&.
.RE
.PP
smartcard\&.target
.RS 4
This target is started automatically as soon as a smartcard controller is plugged in or becomes available at boot\&.
.sp
This may be used to pull in smartcard management daemons dynamically when smartcard hardware is found\&.
.RE
.PP
sound\&.target
.RS 4
This target is started automatically as soon as a sound card is plugged in or becomes available at boot\&.
.sp
This may be used to pull in audio management daemons dynamically when audio hardware is found\&.
.RE
.PP
usb\-gadget\&.target
.RS 4
This target is started automatically as soon as a USB Device Controller becomes available at boot\&.
.sp
This may be used to pull in usb gadget dynamically when UDC hardware is found\&.
.RE
.SS "Special Passive System Units"
.PP
A number of special system targets are defined that can be used to properly order boot\-up of optional services\&. These targets are generally not part of the initial boot transaction, unless they are explicitly pulled in by one of the implementing services\&. Note specifically that these
\fIpassive\fR
target units are generally not pulled in by the consumer of a service, but by the provider of the service\&. This means: a consuming service should order itself after these targets (as appropriate), but not pull it in\&. A providing service should order itself before these targets (as appropriate) and pull it in (via a
\fIWants=\fR
type dependency)\&.
.PP
Note that these passive units cannot be started manually, i\&.e\&.
"systemctl start time\-sync\&.target"
will fail with an error\&. They can only be pulled in by dependency\&. This is enforced since they exist for ordering purposes only and thus are not useful as only unit within a transaction\&.
.PP
blockdev@\&.target
.RS 4
This template unit is used to order mount units and other consumers of block devices after services that synthesize these block devices\&. In particular, this is intended to be used with storage services (such as
\fBsystemd-cryptsetup@.service\fR(5)/
\fBsystemd-veritysetup@.service\fR(5)) that allocate and manage a virtual block device\&. Storage services are ordered before an instance of
blockdev@\&.target, and the consumer units after it\&. The ordering is particularly relevant during shutdown, as it ensures that the mount is deactivated first and the service backing the mount later\&. The
blockdev@\&.target
instance should be pulled in via a
\fBWants=\fR
dependency of the storage daemon and thus generally not be part of any transaction unless a storage daemon is used\&. The instance name for instances of this template unit must be a properly escaped block device node path, e\&.g\&.
blockdev@dev\-mapper\-foobar\&.target
for the storage device
/dev/mapper/foobar\&.
.RE
.PP
cryptsetup\-pre\&.target
.RS 4
This passive target unit may be pulled in by services that want to run before any encrypted block device is set up\&. All encrypted block devices are set up after this target has been reached\&. Since the shutdown order is implicitly the reverse start\-up order between units, this target is particularly useful to ensure that a service is shut down only after all encrypted block devices are fully stopped\&.
.RE
.PP
veritysetup\-pre\&.target
.RS 4
This passive target unit may be pulled in by services that want to run before any verity integrity protected block device is set up\&. All verity integrity protected block devices are set up after this target has been reached\&. Since the shutdown order is implicitly the reverse start\-up order between units, this target is particularly useful to ensure that a service is shut down only after all verity integrity protected block devices are fully stopped\&.
.RE
.PP
first\-boot\-complete\&.target
.RS 4
This passive target is intended as a synchronization point for units that need to run once during the first boot\&. Only after all units ordered before this target have finished, will the
\fBmachine-id\fR(5)
be committed to disk, marking the first boot as completed\&. If the boot is aborted at any time before that, the next boot will re\-run any units with
\fIConditionFirstBoot=yes\fR\&.
.RE
.PP
getty\-pre\&.target
.RS 4
A special passive target unit\&. Users of this target are expected to pull it in the boot transaction via a dependency (e\&.g\&.
\fIWants=\fR)\&. Order your unit before this unit if you want to make use of the console just before
getty
is started\&.
.RE
.PP
local\-fs\-pre\&.target
.RS 4
This target unit is automatically ordered before all local mount points marked with
\fBauto\fR
(see above)\&. It can be used to execute certain units before all local mounts\&.
.RE
.PP
network\&.target
.RS 4
This unit is supposed to indicate when network functionality is available, but it is only very weakly defined what that is supposed to mean\&. However, the following should apply at minimum:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
At start\-up, any configured synthetic network devices (i\&.e\&. not physical ones that require hardware to show up and be probed, but virtual ones like bridge devices and similar which are created programmatically) that do not depend on any underlying hardware should be allocated by the time this target is reached\&. It is not necessary for these interfaces to also have completed IP level configuration by the time
network\&.target
is reached\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
At shutdown, a unit that is ordered after
network\&.target
will be stopped before the network \(em to whatever level it might be set up by then \(em is shut down\&. It is hence useful when writing service files that require network access on shutdown, which should order themselves after this target, but not pull it in\&. Also see
\m[blue]\fBRunning Services After the Network Is Up\fR\m[]\&\s-2\u[1]\d\s+2
for more information\&.
.RE
.sp
It must emphasized that at start\-up there\*(Aqs no guarantee that hardware\-based devices have shown up by the time this target is reached, or even acquired complete IP configuration\&. For that purpose use
network\-online\&.target
as described above\&.
.RE
.PP
network\-pre\&.target
.RS 4
This passive target unit may be pulled in by services that want to run before any network is set up, for example for the purpose of setting up a firewall\&. All network management software orders itself after this target, but does not pull it in\&. Also see
\m[blue]\fBRunning Services After the Network Is Up\fR\m[]\&\s-2\u[1]\d\s+2
for more information\&.
.RE
.PP
nss\-lookup\&.target
.RS 4
A target that should be used as synchronization point for all host/network name service lookups\&. Note that this is independent of UNIX user/group name lookups for which
nss\-user\-lookup\&.target
should be used\&. All services for which the availability of full host/network name resolution is essential should be ordered after this target, but not pull it in\&. systemd automatically adds dependencies of type
\fIAfter=\fR
for this target unit to all SysV init script service units with an LSB header referring to the
"$named"
facility\&.
.RE
.PP
nss\-user\-lookup\&.target
.RS 4
A target that should be used as synchronization point for all regular UNIX user/group name service lookups\&. Note that this is independent of host/network name lookups for which
nss\-lookup\&.target
should be used\&. All services for which the availability of the full user/group database is essential should be ordered after this target, but not pull it in\&. All services which provide parts of the user/group database should be ordered before this target, and pull it in\&. Note that this unit is only relevant for regular users and groups \(em system users and groups are required to be resolvable during earliest boot already, and hence do not need any special ordering against this target\&.
.RE
.PP
remote\-fs\-pre\&.target
.RS 4
This target unit is automatically ordered before all mount point units (see above) and cryptsetup/veritysetup devices marked with the
\fB_netdev\fR\&. It can be used to run certain units before remote encrypted devices and mounts are established\&. Note that this unit is generally not part of the initial transaction, unless the unit that wants to be ordered before all remote mounts pulls it in via a
\fIWants=\fR
type dependency\&. If the unit wants to be pulled in by the first remote mount showing up, it should use
network\-online\&.target
(see above)\&.
.RE
.PP
rpcbind\&.target
.RS 4
The portmapper/rpcbind pulls in this target and orders itself before it, to indicate its availability\&. systemd automatically adds dependencies of type
\fIAfter=\fR
for this target unit to all SysV init script service units with an LSB header referring to the
"$portmap"
facility\&.
.RE
.PP
time\-set\&.target
.RS 4
Services responsible for setting the system clock (\fBCLOCK_REALTIME\fR) from a local source (such as a maintained timestamp file or imprecise real\-time clock) should pull in this target and order themselves before it\&. Services where approximate, roughly monotonic time is desired should be ordered after this unit, but not pull it in\&.
.sp
This target does not provide the accuracy guarantees of
time\-sync\&.target
(see below), however does not depend on remote clock sources to be reachable, i\&.e\&. the target is typically not delayed by network problems and similar\&. Use of this target is recommended for services where approximate clock accuracy and rough monotonicity is desired but activation shall not be delayed for possibly unreliable network communication\&.
.sp
The service manager automatically adds dependencies of type
\fIAfter=\fR
for this target unit to all timer units with at least one
\fIOnCalendar=\fR
directive\&.
.sp
The
\fBsystemd-timesyncd.service\fR(8)
service is a simple daemon that pulls in this target and orders itself before it\&. Besides implementing the SNTP network protocol it maintains a timestamp file on disk whose modification time is regularly updated\&. At service start\-up the local system clock is set from that modification time, ensuring it increases roughly monotonically\&.
.sp
Note that ordering a unit after
time\-set\&.target
only has effect if there\*(Aqs actually a service ordered before it that delays it until the clock is adjusted for rough monotonicity\&. Otherwise, this target might get reached before the clock is adjusted to be roughly monotonic\&. Enable
\fBsystemd-timesyncd.service\fR(8), or an alternative NTP implementation to delay the target\&.
.RE
.PP
time\-sync\&.target
.RS 4
Services indicating completed synchronization of the system clock (\fBCLOCK_REALTIME\fR) to a remote source should pull in this target and order themselves before it\&. Services where accurate time is essential should be ordered after this unit, but not pull it in\&.
.sp
The service manager automatically adds dependencies of type
\fIAfter=\fR
for this target unit to all SysV init script service units with an LSB header referring to the
"$time"
facility, as well to all timer units with at least one
\fIOnCalendar=\fR
directive\&.
.sp
This target provides stricter clock accuracy guarantees than
time\-set\&.target
(see above), but likely requires network communication and thus introduces unpredictable delays\&. Services that require clock accuracy and where network communication delays are acceptable should use this target\&. Services that require a less accurate clock, and only approximate and roughly monotonic clock behaviour should use
time\-set\&.target
instead\&.
.sp
Note that ordering a unit after
time\-sync\&.target
only has effect if there\*(Aqs actually a service ordered before it that delays it until clock synchronization is reached\&. Otherwise, this target might get reached before the clock is synchronized to any remote accurate reference clock\&. When using
\fBsystemd-timesyncd.service\fR(8), enable
\fBsystemd-time-wait-sync.service\fR(8)
to delay the target; or use an equivalent service for other NTP implementations\&.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.B Table\ \&1.\ \&Comparison
.TS
allbox tab(:);
lB lB.
T{
time\-set\&.target
T}:T{
time\-sync\&.target
T}
.T&
l l
l l
l l
l l
l l.
T{
"quick" to reach
T}:T{
"slow" to reach
T}
T{
typically uses local clock sources, boot process not affected by availability of external resources
T}:T{
typically uses remote clock sources, inserts dependencies on remote resources into boot process
T}
T{
reliable, because local
T}:T{
unreliable, because typically network involved
T}
T{
typically guarantees an approximate and roughly monotonic clock only
T}:T{
typically guarantees an accurate clock
T}
T{
implemented by systemd\-timesyncd\&.service
T}:T{
implemented by systemd\-time\-wait\-sync\&.service
T}
.TE
.sp 1
.RE
.SS "Special Slice Units"
.PP
There are four
"\&.slice"
units which form the basis of the hierarchy for assignment of resources for services, users, and virtual machines or containers\&. See
\fBsystemd.slice\fR(7)
for details about slice units\&.
.PP
\-\&.slice
.RS 4
The root slice is the root of the slice hierarchy\&. It usually does not contain units directly, but may be used to set defaults for the whole tree\&.
.RE
.PP
system\&.slice
.RS 4
By default, all system services started by
\fBsystemd\fR
are found in this slice\&.
.RE
.PP
user\&.slice
.RS 4
By default, all user processes and services started on behalf of the user, including the per\-user systemd instance are found in this slice\&. This is pulled in by
systemd\-logind\&.service\&.
.RE
.PP
machine\&.slice
.RS 4
By default, all virtual machines and containers registered with
\fBsystemd\-machined\fR
are found in this slice\&. This is pulled in by
systemd\-machined\&.service\&.
.RE
.SH "UNITS MANAGED BY THE USER SERVICE MANAGER"
.SS "Special User Units"
.PP
When systemd runs as a user instance, the following special units are available:
.PP
default\&.target
.RS 4
This is the main target of the user session, started by default\&. Various services that compose the normal user session should be pulled into this target\&. In this regard,
default\&.target
is similar to
multi\-user\&.target
in the system instance, but it is a real unit, not an alias\&.
.RE
.PP
In addition, the following units are available which have definitions similar to their system counterparts:
exit\&.target,
shutdown\&.target,
sockets\&.target,
timers\&.target,
paths\&.target,
bluetooth\&.target,
printer\&.target,
smartcard\&.target,
sound\&.target\&.
.SS "Special Passive User Units"
.PP
graphical\-session\&.target
.RS 4
This target is active whenever any graphical session is running\&. It is used to stop user services which only apply to a graphical (X, Wayland, etc\&.) session when the session is terminated\&. Such services should have
"PartOf=graphical\-session\&.target"
in their [Unit] section\&. A target for a particular session (e\&. g\&.
gnome\-session\&.target) starts and stops
"graphical\-session\&.target"
with
"BindsTo=graphical\-session\&.target"\&.
.sp
Which services are started by a session target is determined by the
"Wants="
and
"Requires="
dependencies\&. For services that can be enabled independently, symlinks in
"\&.wants/"
and
"\&.requires/"
should be used, see
\fBsystemd.unit\fR(5)\&. Those symlinks should either be shipped in packages, or should be added dynamically after installation, for example using
"systemctl add\-wants", see
\fBsystemctl\fR(1)\&.
.PP
\fBExample\ \&1.\ \&Nautilus as part of a GNOME session\fR
"gnome\-session\&.target"
pulls in Nautilus as top\-level service:
.sp
.if n \{\
.RS 4
.\}
.nf
[Unit]
Description=User systemd services for GNOME graphical session
Wants=nautilus\&.service
BindsTo=graphical\-session\&.target
.fi
.if n \{\
.RE
.\}
.sp
"nautilus\&.service"
gets stopped when the session stops:
.sp
.if n \{\
.RS 4
.\}
.nf
[Unit]
Description=Render the desktop icons with Nautilus
PartOf=graphical\-session\&.target
[Service]
\&...
.fi
.if n \{\
.RE
.\}
.RE
.PP
graphical\-session\-pre\&.target
.RS 4
This target contains services which set up the environment or global configuration of a graphical session, such as SSH/GPG agents (which need to export an environment variable into all desktop processes) or migration of obsolete d\-conf keys after an OS upgrade (which needs to happen before starting any process that might use them)\&. This target must be started before starting a graphical session like
gnome\-session\&.target\&.
.RE
.PP
xdg\-desktop\-autostart\&.target
.RS 4
The XDG specification defines a way to autostart applications using XDG desktop files\&. systemd ships
\fBsystemd-xdg-autostart-generator\fR(8)
for the XDG desktop files in autostart directories\&. Desktop Environments can opt\-in to use this service by adding a
\fIWants=\fR
dependency on
xdg\-desktop\-autostart\&.target\&.
.RE
.SS "Special User Slice Units"
.PP
There are four
"\&.slice"
units which form the basis of the user hierarchy for assignment of resources for user applications and services\&. See
\fBsystemd.slice\fR(7)
for details about slice units and the documentation about
\m[blue]\fBDesktop Environments\fR\m[]\&\s-2\u[3]\d\s+2
for further information\&.
.PP
\-\&.slice
.RS 4
The root slice is the root of the user\*(Aqs slice hierarchy\&. It usually does not contain units directly, but may be used to set defaults for the whole tree\&.
.RE
.PP
app\&.slice
.RS 4
By default, all user services and applications managed by
\fBsystemd\fR
are found in this slice\&. All interactively launched applications like web browsers and text editors as well as non\-critical services should be placed into this slice\&.
.RE
.PP
session\&.slice
.RS 4
All essential services and applications required for the session should use this slice\&. These are services that either cannot be restarted easily or where latency issues may affect the interactivity of the system and applications\&. This includes the display server, screen readers and other services such as DBus or XDG portals\&. Such services should be configured to be part of this slice by adding
\fISlice=session\&.slice\fR
to their unit files\&.
.RE
.PP
background\&.slice
.RS 4
All services running low\-priority background tasks should use this slice\&. This permits resources to be preferentially assigned to the other slices\&. Examples include non\-interactive tasks like file indexing or backup operations where latency is not important\&.
.RE
.SH "SEE ALSO"
.PP
\fBsystemd\fR(1),
\fBsystemd.unit\fR(5),
\fBsystemd.service\fR(5),
\fBsystemd.socket\fR(5),
\fBsystemd.target\fR(5),
\fBsystemd.slice\fR(5),
\fBbootup\fR(7),
\fBsystemd-fstab-generator\fR(8),
\fBuser@.service\fR(5)
.SH "NOTES"
.IP " 1." 4
Running Services After the Network Is Up
.RS 4
\%https://systemd.io/NETWORK_ONLINE
.RE
.IP " 2." 4
Syslog Interface
.RS 4
\%https://www.freedesktop.org/wiki/Software/systemd/syslog
.RE
.IP " 3." 4
Desktop Environments
.RS 4
\%https://systemd.io/DESKTOP_ENVIRONMENTS
.RE
|