Introduction To Basics: Systemd
Introduction To Basics: Systemd
WHAT?
systemd is used to manage system settings and services. systemd
organizes tasks into components called units and groups of units into
targets.
WHY?
Learn about the basics of systemd, which include essential
functionalities such as service management, dependency tracking,
logging, resource management, socket activation and system control.
EFFORT
20 minutes of reading time.
REQUIREMENTS
Contents
1 What is systemd? 3
6 Logging 11
7 systemd targets 11
10 systemd troubleshooting 14
12 Legal Notice 17
For troubleshooting, you can use journalctl, which is used to query and display log messages
from the systemd journal.
For more information on systemd, you can refer to https://systemd.io and man 1 systemd.
The rst step in the boot process is to load the Linux kernel, which is the main com-
ponent of the Linux operating system. Once the kernel is loaded, it initializes the
hardware and starts the systemd process, which is the rst process that runs on the
system.
Stage 1: BIOS
When you power on your computer, your computer starts BIOS (Basic Input/Output Sys-
tem) and performs a POST (Power On Self Test). This is an integrity check that probes
the hardware functionality of components such as hard disks, SSD, keyboard, RAM, USB
ports and any other hardware. If the hardware works as expected, the boot process moves
on to the next stage.
Stage 4: systemd
The kernel loads systemd, which is a system and service manager for Linux operating
systems. systemd then runs all the other initialization processes.
Getting a high-level overview of the boot process, which includes services that are started and the
time it takes for each service to start
graphical.target @13.117s
└─multi-user.target @13.117s
└─getty.target @13.117s
└─getty@tty1.service @13.116s
└─plymouth-quit-wait.service @10.775s +2.338s
This command prints a tree of time-critical units either for each of the specified units or
for the default target. The initialization of services might depend on socket activation and
the parallel execution of units. Similar to the blame command, it displays the time taken
by a unit to activate, which is not defined for units like device units that transition directly
to active state.
Viewing a list of services started during the boot process and displayed according to the time taken
by each service
The initialization of one service might be slow because it is waiting for another service
initialization to complete. It displays the time taken by a unit to activate, which is not
defined for units like device units that transition directly to active state. This command
does not display results for services with Type=simple because systemd considers these
services to be started immediately, hence the initialization delays cannot be analyzed.
Generating a vector graphics file that displays the events that take place during the boot process
This command creates a SVG le in the temp directory. The SVG le is a text le that
defines a set of graphics vectors that applications such as LibreOffice Draw use to generate
a graph.
[Section]
Directive1=value
Directive2=value
. . .
[Unit]
The rst section found in most unit les is the [Unit] section. This section is used to define
the metadata of the unit le and configure the relationship of the unit le to other unit les.
This section is usually placed at the top because it provides an overview of the unit le.
[Install]
This is often the last section in the unit le and is optional. This section is used to define
the behavior of a unit le when it is enabled or disabled. When you enable a unit le, it
automatically starts at boot. Based on the specific unit, there could be a dependency on
other related units to work properly. For example, chrony requires the directives After,
Wants, and Before, which are all dependencies for chrony to work with.
[Unit]
Description=usbguard 1
[Service]
ExecStart=/usr/sbin/usb-daemon 2
[Install]
WantedBy=multi-user.target 3
.service
Describes how to manage a service or application. This includes how to start or stop the
service, reload its configuration le (if applicable), under what conditions the service starts
automatically, and the dependency or the hierarchy information for related unit les.
.path
Defines a path for path-based activation. By default, a .service unit le of the same base
name is activated. inotify is a kernel API that is used by programs that want to be notified
about changes to les.
.snapshot
The systemctl snapshot command automatically creates a .snapshot unit le. This
command creates temporary snapshots of the current state of the system. You can modify
the current state of the system after making changes. Snapshots are used for rolling back
temporary states.
.timer
Defines a timer that is managed by systemd. This is similar to a cron job for delayed or
scheduled activation. A unit le with the same name, but with le extension .service is
started when the timer is reached.
.slice
Associate Linux Control Group nodes, which allow resources to be assigned or restricted
to any processes associated with the slice. The name indicates the hierarchy within the
control group tree. Units are placed in slices by default depending on their type.
.target
Provides synchronization for other units during a boot up or a change in state, or brings
the system to a new state. Other units specify their relation to targets in order to sync with
the target's operations.
.socket
Describes a network, an IPC socket, or a FIFO buer that systemd uses for socket-based
activation. There is an associated .service le that starts when an activity is seen on the
socket that this unit defines.
.device
Defines a device that has been designated for systemd management by udev or sysfs le
system. Not all devices have the .device le. This unit le is required when ordering,
mounting, or accessing a device.
.mount
Defines a mount point on the system to be managed by systemd. This le is named after
the mount path, with the slashes changed to dashes. Entries within /etc/fstab can have
units created automatically.
.automount
Defines a mount point that is automatically mounted. Name the le after the mount point
that it refers to. A matching .mount unit le is required to define the specics of the mount.
systemd has two types of dependencies: requirement and order dependencies. Re-
quirement dependencies specify which other units must be either started or stopped
when activating a unit. Order dependencies specify the order in which units must
be started.
Unit dependencies
Unit les have the dependencies feature. A unit may want or require one or more other units be-
fore it can run. These dependencies are set in unit les with the directives Wants and Requires.
Wants
For example, if unit A has Wants=unit B, when unit A is run, unit B runs as well. But if
unit B starts successfully or not, does not have an influence on unit A running successfully.
Requires
If unit A has Requires=unit B, both units run but if unit B does not run successfully, unit
A is deactivated. It does not matter if the processes of unit A would have run successfully.
Unit order
Without proper instructions, systemd can run a group of units at the same time. Starting services
in the right order is important for a good functioning of the Linux system. You can arrange the
order with the unit le directives Before and After.
After
If unit A has After=unit B, when both units are run, unit B is executed fully before unit A.
6 Logging
Log les and journals are important for system administration. They give in-depth information
about a system and are very important for troubleshooting and auditing. Log les contain events
and messages generated by the kernel, applications, and users that log into the system. You
can use the journalctl command to query the journal. This command views logs collected by
systemd. The systemd-journald service handles systemd's log collection. systemd-journald
saves the events and messages in a binary format.
7 systemd targets
systemd uses units and targets. A systemd unit defines a service or action on the
system, which consists of a name, type, and configuration le. A systemd target
combines several units and defines which services have to be started to reach the
target. On a server, for example, this is a state where the network is running and
multiple users can log in. These les are identified by the suffix .target.
Similar to unit les, different targets may be nested via dependencies. For example,
multi-user.target requires (among others) the targets that set up login and user
session services.
Common systemd targets:
default.target
Boots by default. The default.target le is a symbolic link to the true target le, such as
graphical.target for a desktop workstation. For a server, it is usually graphical.tar-
get.
poweroff.target
Shuts down and powers o the system.
multi-user.target
Sets up a non-graphical (console) multi-user system.
graphical.target
Uses a graphical multi-user system with network services.
reboot.target
Shuts down and reboots the system.
For more information on systemd targets, refer to man 5 systemd.target and man 7 systemd.special.
You can use systemd as a regular user for better security or when you do not have
root user privileges. Running an unprivileged service can be done by creating a
user service.
When creating and using a user service, consider the following:
User service sessions are terminated when the user's session ends. This can be overridden
by using the loginctl enable-linger USERNAME command.
You can control user services with the systemctl --user command.
The systemctl command is used to examine and control the state of systemd and
service manager.
You can use the following common systemctl commands and refer to the man systemctl page.
systemctl list-units
Lists the systemd units. You can use the optional arguments: --state=running to show
the active units and --type=service to show the exited and active units.
systemctl list-unit-files
Lists the systemd units and the status, such as static, generated, disabled, alias, masked,
and enabled.
systemctl list-dependencies
Lists the dependency tree.
systemctl reboot
Reboots the system reboot.target.
systemctl poweroff
Powers o the system poweroff.target.
systemctl emergency
Goes into the emergency mode emergency.target.
systemctl default
Goes back to default target multi-user.target.
10 systemd troubleshooting
You can use the following troubleshooting tips to identify and resolve issues with systemd
services and ensure a smooth system operation.
The command analyzes the unit le and reports any syntax errors, missing les, or other
issues. You must x any reported issues before enabling and starting the service.
Check the logs for your service with the journalctl -u SERVICE command
If you experience any issue with a systemd service, check the service's log. For example:
The command displays logs for the specified service, including any error messages, warn-
ings, or other relevant information. You can use these logs to identify and x issues with
the service.
The command creates an SVG le called boot-plot.svg that contains a graphical repre-
sentation of the boot process and potential issues. This includes the start and stop time of
each service. You can open this le in an SVG-compatible image viewer or Web browser
to analyze services that are causing issues during the boot process.
You can cancel the running and waiting jobs, and again shut down or reboot:
[Service]
ExecStart=PATH_TO_EXECUTABLE
ExecReload=PATH_TO_RELOAD_SCRIPT
12 Legal Notice
Copyright© 2006–2025 SUSE LLC and contributors. All rights reserved.
Permission is granted to copy, distribute and/or modify this document under the terms of the
GNU Free Documentation License, Version 1.2 or (at your option) version 1.3; with the Invariant
Section being this copyright notice and license. A copy of the license version 1.2 is included in
the section entitled “GNU Free Documentation License”.
For SUSE trademarks, see https://www.suse.com/company/legal/ . All other third-party trade-
marks are the property of their respective owners. Trademark symbols (®, ™ etc.) denote trade-
marks of SUSE and its affiliates. Asterisks (*) denote third-party trademarks.
All information found in this book has been compiled with utmost attention to detail. However,
this does not guarantee complete accuracy. Neither SUSE LLC, its affiliates, the authors, nor the
translators shall be held liable for possible errors or the consequences thereof.
The purpose of this License is to make a manual, textbook, or other functional and useful docu-
ment "free" in the sense of freedom: to assure everyone the effective freedom to copy and redis-
tribute it, with or without modifying it, either commercially or non-commercially. Secondarily,
this License preserves for the author and publisher a way to get credit for their work, while not
being considered responsible for modifications made by others.
This License is a kind of "copyleft", which means that derivative works of the document must
themselves be free in the same sense. It complements the GNU General Public License, which
is a copyleft license designed for free software.
We have designed this License to use it for manuals for free software, because free software needs
free documentation: a free program should come with manuals providing the same freedoms
that the software does. But this License is not limited to software manuals; it can be used for
any textual work, regardless of subject matter or whether it is published as a printed book. We
recommend this License principally for works whose purpose is instruction or reference.
This License applies to any manual or other work, in any medium, that contains a notice placed
by the copyright holder saying it can be distributed under the terms of this License. Such a
notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under
the conditions stated herein. The "Document", below, refers to any such manual or work. Any
member of the public is a licensee, and is addressed as "you". You accept the license if you copy,
modify or distribute the work in a way requiring permission under copyright law.
A "Modified Version" of the Document means any work containing the Document or a portion
of it, either copied verbatim, or with modifications and/or translated into another language.
A "Secondary Section" is a named appendix or a front-matter section of the Document that deals
exclusively with the relationship of the publishers or authors of the Document to the Document's
overall subject (or to related matters) and contains nothing that could fall directly within that
overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section
may not explain any mathematics.) The relationship could be a matter of historical connection
with the subject or with related matters, or of legal, commercial, philosophical, ethical or po-
litical position regarding them.
2. VERBATIM COPYING
You may copy and distribute the Document in any medium, either commercially or non-com-
mercially, provided that this License, the copyright notices, and the license notice saying this
License applies to the Document are reproduced in all copies, and that you add no other condi-
tions whatsoever to those of this License. You may not use technical measures to obstruct or
control the reading or further copying of the copies you make or distribute. However, you may
accept compensation in exchange for copies. If you distribute a large enough number of copies
you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and you may publicly display
copies.
3. COPYING IN QUANTITY
If you publish printed copies (or copies in media that commonly have printed covers) of the
Document, numbering more than 100, and the Document's license notice requires Cover Texts,
you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-
Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also
clearly and legibly identify you as the publisher of these copies. The front cover must present the
full title with all words of the title equally prominent and visible. You may add other material
on the covers in addition. Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated as verbatim copying in
other respects.
If the required texts for either cover are too voluminous to t legibly, you should put the rst
ones listed (as many as t reasonably) on the actual cover, and continue the rest onto adjacent
pages.
If you publish or distribute Opaque copies of the Document numbering more than 100, you must
either include a machine-readable Transparent copy along with each Opaque copy, or state in
or with each Opaque copy a computer-network location from which the general network-using
public has access to download using public-standard network protocols a complete Transparent
4. MODIFICATIONS
You may copy and distribute a Modified Version of the Document under the conditions of sec-
tions 2 and 3 above, provided that you release the Modified Version under precisely this License,
with the Modified Version filling the role of the Document, thus licensing distribution and mod-
ification of the Modified Version to whoever possesses a copy of it. In addition, you must do
these things in the Modified Version:
A. Use in the Title Page (and on the covers, if any) a title distinct from that of the Document,
and from those of previous versions (which should, if there were any, be listed in the
History section of the Document). You may use the same title as a previous version if the
original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities responsible for authorship
of the modifications in the Modified Version, together with at least ve of the principal
authors of the Document (all of its principal authors, if it has fewer than ve), unless they
release you from this requirement.
C. State on the Title page the name of the publisher of the Modified Version, as the publisher.
E. Add an appropriate copyright notice for your modifications adjacent to the other copyright
notices.
F. Include, immediately after the copyright notices, a license notice giving the public permis-
sion to use the Modified Version under the terms of this License, in the form shown in
the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections and required Cover Texts
given in the Document's license notice.
I. Preserve the section Entitled "History", Preserve its Title, and add to it an item stating at
least the title, year, new authors, and publisher of the Modified Version as given on the
Title Page. If there is no section Entitled "History" in the Document, create one stating the
title, year, authors, and publisher of the Document as given on its Title Page, then add an
item describing the Modified Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for public access to a Trans-
parent copy of the Document, and likewise the network locations given in the Document
for previous versions it was based on. These may be placed in the "History" section. You
may omit a network location for a work that was published at least four years before the
Document itself, or if the original publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications", Preserve the Title of the
section, and preserve in the section all the substance and tone of each of the contributor
acknowledgements and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document, unaltered in their text and in their
titles. Section numbers or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements". Such a section may not be included in the
Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements" or to conflict in title with
any Invariant Section.
If the Modified Version includes new front-matter sections or appendices that qualify as Se-
condary Sections and contain no material copied from the Document, you may at your option
designate some or all of these sections as invariant. To do this, add their titles to the list of
Invariant Sections in the Modified Version's license notice. These titles must be distinct from
any other section titles.
You may add a section Entitled "Endorsements", provided it contains nothing but endorsements
of your Modified Version by various parties--for example, statements of peer review or that the
text has been approved by an organization as the authoritative definition of a standard.
You may add a passage of up to ve words as a Front-Cover Text, and a passage of up to 25
words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only
one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through
5. COMBINING DOCUMENTS
You may combine the Document with other documents released under this License, under the
terms defined in section 4 above for modified versions, provided that you include in the combi-
nation all of the Invariant Sections of all of the original documents, unmodified, and list them
all as Invariant Sections of your combined work in its license notice, and that you preserve all
their Warranty Disclaimers.
The combined work need only contain one copy of this License, and multiple identical Invariant
Sections may be replaced with a single copy. If there are multiple Invariant Sections with the
same name but different contents, make the title of each such section unique by adding at the
end of it, in parentheses, the name of the original author or publisher of that section if known,
or else a unique number. Make the same adjustment to the section titles in the list of Invariant
Sections in the license notice of the combined work.
In the combination, you must combine any sections Entitled "History" in the various original
documents, forming one section Entitled "History"; likewise combine any sections Entitled "Ac-
knowledgements", and any sections Entitled "Dedications". You must delete all sections Entitled
"Endorsements".
6. COLLECTIONS OF DOCUMENTS
You may make a collection consisting of the Document and other documents released under
this License, and replace the individual copies of this License in the various documents with a
single copy that is included in the collection, provided that you follow the rules of this License
for verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute it individually under
this License, provided you insert a copy of this License into the extracted document, and follow
this License in all other respects regarding verbatim copying of that document.
A compilation of the Document or its derivatives with other separate and independent docu-
ments or works, in or on a volume of a storage or distribution medium, is called an "aggregate"
if the copyright resulting from the compilation is not used to limit the legal rights of the com-
pilation's users beyond what the individual works permit. When the Document is included in
an aggregate, this License does not apply to the other works in the aggregate which are not
themselves derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if
the Document is less than one half of the entire aggregate, the Document's Cover Texts may be
placed on covers that bracket the Document within the aggregate, or the electronic equivalent
of covers if the Document is in electronic form. Otherwise they must appear on printed covers
that bracket the whole aggregate.
8. TRANSLATION
Translation is considered a kind of modification, so you may distribute translations of the Doc-
ument under the terms of section 4. Replacing Invariant Sections with translations requires spe-
cial permission from their copyright holders, but you may include translations of some or all
Invariant Sections in addition to the original versions of these Invariant Sections. You may in-
clude a translation of this License, and all the license notices in the Document, and any War-
ranty Disclaimers, provided that you also include the original English version of this License
and the original versions of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice or disclaimer, the original
version will prevail.
If a section in the Document is Entitled "Acknowledgements", "Dedications", or "History", the
requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual
title.
9. TERMINATION
You may not copy, modify, sublicense, or distribute the Document except as expressly provided
for under this License. Any other attempt to copy, modify, sublicense or distribute the Document
is void, and will automatically terminate your rights under this License. However, parties who
have received copies, or rights, from you under this License will not have their licenses termi-
nated so long as such parties remain in full compliance.
The Free Software Foundation may publish new, revised versions of the GNU Free Documenta-
tion License from time to time. Such new versions will be similar in spirit to the present ver-
sion, but may differ in detail to address new problems or concerns. See https://www.gnu.org/
copyleft/ .
Each version of the License is given a distinguishing version number. If the Document specifies
that a particular numbered version of this License "or any later version" applies to it, you have
the option of following the terms and conditions either of that specified version or of any later
version that has been published (not as a draft) by the Free Software Foundation. If the Document
does not specify a version number of this License, you may choose any version ever published
(not as a draft) by the Free Software Foundation.
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the
“with...Texts.” line with this:
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
If you have Invariant Sections without Cover Texts, or some other combination of the three,
merge those two alternatives to suit the situation.
If your document contains nontrivial examples of program code, we recommend releasing these
examples in parallel under your choice of free software license, such as the GNU General Public
License, to permit their use in free software.