An introduction to systemd
All Systems Go
Wondering what all the fuss is about systemd? We explain the basic concepts and capabilities of the new system management suite – coming soon to a distro near you.
Some people swear by systemd [1], the new systems and services manager. Others swear at it – loudly and frequently. However, now that systemd is starting to be installed by default in most major distributions, you probably need to begin to familiarize yourself with at least its basic concepts, including its basic commands and how it handles runlevels, logs, and starting and stopping systems.
To be sure, the latest version of Debian lets users install without systemd by using preseed [2] or adding an argument at the boot menu [3], but at that point learning systemd seems easier than avoiding it. Additionally, that option may not be available in future releases.
If you have not been following the controversy about systemd, you may wonder what the fuss is about. After all, systemd is generally summarized as a replacement for init [4], the process that controls other processes. Ubuntu's replacement for init, called upstart [5], did not meet with anything like the same opposition, so why should systemd?
Ignoring the clashes of personality involved, the purely technical answer is that describing systemd as an init replacement is like calling a computer an adding machine: The explanation is true but is so limited as to be misleading. The truth is, systemd not only manages the bootup process, but pretty much every other major aspect of your system, introducing dozens of new commands (Table 1) and accompanying configuration files.
Table 1
A Sampling of systemd Commands
Command | Function |
---|---|
|
Queries and changes the system hostname |
|
Queries the systemd journal |
|
Sets system locale and keyboard |
|
Sets login process |
|
Registers users |
|
Turns off the computer |
|
Manages udev |
These changes are so extensive that typing man system.d.index
lists 134 new man pages, many of which have their own options. An orderly naming system for commands and files helps (e.g., systemd commands mostly end with ctl), but systemd may well be the largest set of changes to Linux ever.
Some developers complain that systemd is so all encompassing that it violates the standard Unix tenet of developing one tool for one task. Also, systemd enforces the Linux Standards Base [6] for file hierarchies, reducing long-established directories such as /bin
and /sbin
to symbolic links that point to subdirectories of /usr
. Faced with such changes, groups such as the Debian fork Devuan [7] are determined to avoid being "locked in the overwhelming web of dependencies of systemd" and are building a distribution that continues to use init.
By contrast, KDE developer Aaron Seigo says, "The problems with the venerable SysV init were becoming more and more evident. Systemd is a replacement that modernizes the init system, but just as importantly has consensus support among distributions."
Considering the amount of information to absorb, having an informed opinion about systemd is difficult. However, the best way to judge the issues is to explore systemd more closely until you can form your own conclusions.
Some Systemd Basics
Systemd manages 12 different types of objects required for bootup and system operation. These objects are called units (Table 2). Typical units include a mount unit for each filesystem, a service unit for each daemon, a sockets unit for the CUPS printing system, and a device unit for mounting a sound card. However, the average system has dozens of units – 156 on the computer I am using to write this article. Many have configuration files with similar names.
Table 2
Systemd Units
Unit Type | Description | Man Page |
---|---|---|
Service |
Starts and controls daemons |
|
Socket |
Local IPC or network sockets |
|
Target |
Groups of units or synchronization points during bootup |
|
Device |
Give systemd access to kernel devices and activate devices |
|
Mount |
Control mountpoints for filesystems |
|
Automount units |
Allow automounting of filesystems as well as parallelized bootup |
|
Snapshot |
Temporarily save states of systemd units for later restoration |
|
Timer |
Set when other units are triggered |
|
Swap |
Represent swap partitions or files |
|
Path |
Activate other services when filesystem objects change |
|
Slice |
Group units that manage processes in a hierarchical tree |
|
Scope |
Manage foreign processes |
|
At any given time, a unit may be in one of five main states: active, inactive, activating, deactivating, or failed. Systemd also manages positive dependencies (what must be present) and reverse dependencies (what cannot be present) for units. The state of units can be changed by applications or other units; in particular, many are created during bootup.
For convenience, units are arranged in control groups, which are defined in the kernel. The processes of control groups are readable in fs//sys/fs/cgroup/systemd/
or using the ps
command. Units or control groups receive requests for action from applications, which are known as jobs in systemd.
Contrary to widespread comprehension, this structure remains largely compatible with init. From a user's perspective, files such as /etc/fstab
or /etc/group
remain much the same. In fact, systemd is aliased to init when used at bootup.
The main difference is that control of the system is centralized to a far greater degree than under init. Much of this control is centralized in the new systemctl
command. Systemctl's basic command structure is:
systemctl [OPTIONS] COMMAND [UNIT / OTHERTARGET]
The plain command systemctl
lists all units on the system (Figure 1). Units can be specified by a comma-separated list or by using options to specify a type of unit, such as --type=UNITS
or --state=STATE
(Figure 2).
The command systemctl start UNITS
activates units, and similar commands stop, restart, and disable units. For troubleshooting, a useful option is systemctl --failed
, which shows the units that failed during bootup. Other combinations of commands and options create and control snapshots, jobs, or systemd environment variables, as specified in the systemctl man page.
If no units are specified, then the command given is run on the entire system. In everyday system administration, this is the situation under which systemctl is most likely to be used. The most common standalone commands are halt
, poweroff
, reboot
, suspend
, and hibernate
, which are often given symbolic links to the pre-systemd separate commands to ease the transition for users. Other standalone systemctl commands include:
<C>systemctl isolate graphical.target<C> <C>systemctl isolate multi-user.target<C>
The first command changes to runlevel 5 for a graphical interface, and the second changes to runlevel 3 for a command-line interface.
Another command you might want to learn right away is journalctl
(Figure 3). Systemd replaces the old syslog files with its own, which starts recording much earlier in the boot process. The basic command is
journalctl -- all
However, you can filter your reading of logfiles by your choice of options (Table 3).
Table 3
Useful journalctl Options
Option | Output |
---|---|
|
Log since the most recent boot. |
|
A live depiction of the journal, similar to the tail command. |
|
Only the 10 most recent entries. |
|
Shows messages with the given priority: emerg ( |
|
Entries in reverse order, with the latest entry first. |
|
The log since yesterday. |
|
The log for a defined period. |
|
The full text of each entry (the default is a shortened version). |
Most users who are also admins are used to dealing with logs, but systemd also introduces systemd-analyze
to help you study the boot process. The command used alone shows how long the last bootup took in kernel space and userspace (Figure 4). Add the blame
command, and systemd-analyze
shows how long each service took to start (Figure 5), whereas critical-chain
creates a tree view that shows the order in which units start and the time they take to start (Figure 6).
In theory, you are supposed to be able to create SVG charts of bootup and print them to a file with
systemd-analyze dot | dot -Tsvg > systemd.svg
or
systemd-analyze plot > bootplot.svg
In practice, however, these charts fail to display in any useful fashion in any application that supports SVG format, including Gimp, Inkscape, LibreOffice Draw, or Calligra Suite's Karbon.
Taking the Next Steps
Many users, including me, got the idea while trying systemd when it was still in development that it's more complicated than it actually is. For example, I remember being puzzled at being unable to shut down while logged in as an unprivileged user – and as root as well – before I found the right command. However, such difficulties have disappeared as dozens of symbolic links have been added, and, for the most part, a Linux computer running with systemd now operates much as one without.
Still, the brief explanations given here should provide a starting point for understanding systemd and its unique features more thoroughly. As must be obvious, systemd involves more – much more – than mentioned here. Full documentation of systemd would require at least several hundred pages, as well as in-depth scrutiny of individual units.
When you look more closely at systemd, you may still dislike its design philosophy or the politics surrounding its implementation. At least potentially, systemd appears to offer more thorough and more detailed control of Linux systems than anything available until now. If nothing else, you may end up appreciating it on a technical level – as well as being grateful for having its thorough documentation to guide you.
Infos
- Systemd: http://freedesktop.org/wiki/Software/systemd/
- Preseed: https://wiki.debian.org/DebianInstaller/Preseed
- Installing without systemd: https://wiki.debian.org/systemd#Installing_without_systemd
- Init: http://en.wikipedia.org/wiki/Init
- Upstart: http://en.wikipedia.org/wiki/Upstart
- Linux Standard Base: http://en.wikipedia.org/wiki/Linux_Standard_Base
- Debian fork: http://debianfork.org/
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.