6.64. Systemd-208

The Systemd package contains programs for controlling the startup, running, and shutdown of the system.

Approximate build time: 0.1 SBU
Required disk space: 29 MB

6.64.1. Installation of Systemd

First, create a file to allow Systemd to build when using Util-Linux built in Chapter 5:

cat > config.cache << "EOF"
KILL=/bin/kill
HAVE_BLKID=1
BLKID_LIBS="-lblkid"
BLKID_CFLAGS="-I/tools/include/blkid"
EOF

Aditionally, fix a build error when using Util-Linux built in Chapter 5:

sed -i "s:blkid/::" src/udev/udev-builtin-blkid.c

Prepare Systemd for compilation:

./configure --prefix=/usr                       \
            --sysconfdir=/etc                   \
            --localstatedir=/var                \
            --docdir=/usr/share/doc/systemd-208 \
            --config-cache                      \
            --with-rootprefix=                  \
            --with-rootlibdir=/lib              \
            --enable-split-usr                  \
            --disable-gudev                     \
            --without-python

The meaning of the configure options:

--config-cache

This switch tells the build system to use the config.cache file which was created earlier.

--with-root*

These switches ensure that core programs and shared libraries are installed in the subdirectories of the root partition.

--enable-split-usr

This switch ensures that Systemd will work on systems where /bin, /lib and /sbin directories are not symlinks to their /usr counterparts.

--disable-gudev --without-python

These switches disable optional features because LFS does not provide their dependencies.

Compile the package:

make LIBRARY_PATH=/tools/lib

The package comes with a testsuite, but it doesn't work in chroot. It needs to be run from a system booted using Systemd.

First prevent a broken test case from running:

sed -i s:test/udev-test.pl::g Makefile

To test the results, issue:

make check

Install the package:

make LD_LIBRARY_PATH=/tools/lib install

Install manual pages which are shipped in the tarball, but were not installed by install process:

for cat in 1 3 5 7 8
do
  install -v -m644 man/*.${cat} /usr/share/man/man${cat}
done

Move NSS myhostname library to /lib:

mv -v /usr/lib/libnss_myhostname.so.2 /lib

Remove an unnecessary directory:

rm -rfv /usr/lib/rpm

Create the Sysvinit compatibility symlinks, so Systemd is used as the default init system:

for tool in runlevel reboot shutdown poweroff halt telinit; do
     ln -sfv ../bin/systemctl /sbin/${tool}
done
ln -sfv ../lib/systemd/systemd /sbin/init

Remove a reference to a non-existent group:

sed -i "s@0775 root lock@0755 root root@g" /usr/lib/tmpfiles.d/legacy.conf

Create the /etc/machine-id file needed by Journald:

systemd-machine-id-setup

6.64.2. Contents of Systemd

Installed programs: bootctl, halt, hostnamectl, init, journalctl, kernel-install, localectl, loginctl, machinectl, poweroff, reboot, runlevel, shutdown, systemctl, systemd-analyze, systemd-ask-password, systemd-cat, systemd-cgls, systemd-cgtop, systemd-coredumpctl, systemd-delta, systemd-detect-virt, systemd-inhibit, systemd-machine-id-setup, systemd-notify, systemd-nspawn, systemd-run, systemd-stdio-bridge, systemd-tmpfiles, systemd-tty-ask-password-agent, telinit, timedatectl, and udevadm
Installed libraries: libnss_myhostname.so.2, libsystemd-daemon.so, libsystemd-id128.so, libsystemd-journal.so, libsystemd-login.so, libudev.so
Installed directories: /etc/binfmt.d, /etc/init.d, /etc/kernel, /etc/modules-load.d, /etc/sysctl.d, /etc/systemd, /etc/tmpfiles.d, /etc/udev, /etc/xdg/systemd, /lib/systemd, /lib/udev, /usr/include/systemd, /usr/lib/binfmt.d, /usr/lib/kernel, /usr/lib/modules-load.d, /usr/lib/sysctl.d, /usr/lib/systemd, /usr/lib/tmpfiles.d, /usr/share/doc/systemd-208, /usr/share/systemd, /var/lib/systemd, /var/log/journal

Short Descriptions

halt

Normally invokes shutdown with the -h option, except when already in run-level 0, then it tells the kernel to halt the system; it notes in the file /var/log/wtmp that the system is being brought down.

hostnamectl

used to query and change the system hostname and related settings.

init

The first process to be started when the kernel has initialized the hardware which takes over the boot process and starts all the proceses it is instructed to.

journalctl

used to query the contents of the Systemd Journal.

kernel-install

used to add and remove kernel and initramfs images to and from /boot.

localectl

used to query and change the system locale and keyboard layout settings.

loginctl

used to introspect and control the state of the Systemd Login Manager.

machinectl

used to introspect and control the state of the Systemd Virtual Machine and Container Registration Manager

poweroff

Tells the kernel to halt the system and switch off the computer (see halt).

reboot

Tells the kernel to reboot the system (see halt).

runlevel

Reports the previous and the current run-level, as noted in the last run-level record in /var/run/utmp.

shutdown

Brings the system down in a secure way, signaling all processes and notifying all logged-in users.

systemctl

used to introspect and control the state of the Systemd system and service manager.

systemd-analyze

used to determine system boot-up performance of the current boot.

systemd-ask-password

used to query a system password or passphrase from the user, using a question message specified on the command line.

systemd-cat

used to connect STDOUT and STDERR of a process with the Journal.

systemd-cgls

recursively shows the contents of the selected Linux control group hierarchy in a tree.

systemd-cgtop

shows the top control groups of the local Linux control group hierarchy, ordered by their CPU, memory and disk I/O load.

systemd-coredumpctl

used to retrieve coredumps from the Systemd Journal

systemd-delta

used to identify and compare configuration files in /etc that override default counterparts in /usr.

systemd-detect-virt

detects execution in a virtualized environment.

systemd-inhibit

used to execute a program with a shutdown, sleep or idle inhibitor lock taken.

systemd-machine-id-setup

used by system installer tools to initialize the machine ID stored in /etc/machine-id at install time with a randomly generated ID.

systemd-notify

used by daemon scripts to notify the init system about status changes.

systemd-nspawn

used to run a command or OS in a light-weight namespace container.

systemd-run

used to create and start a transient .service or a .scope unit and run the specified command in it.

systemd-tmpfiles

creates, deletes and cleans up volatile and temporary files and directories, based on the configuration file format and location specified in tmpfiles.d directories.

systemd-tty-ask-password-agent

used to list or process pending Systemd password requests

telinit

Tells init which run-level to change to.

timedatectl

used to query and change the system clock and its settings.

udevadm

Generic Udev administration tool: controls the udevd daemon, provides info from the Udev database, monitors uevents, waits for uevents to finish, tests Udev configuration, and triggers uevents for a given device.

libsystemd-daemon

Systemd Daemon utility library.

libsystemd-id128

Systemd 128 Bit ID utility library.

libsystemd-journal

Systemd Journal utility library.

libsystemd-login

Systemd Login utility library.

libudev

A library to access Udev device information.