systemd

From Wikipedia, the free encyclopedia

systemd
Systemd-logo.svg
Systemd-on-fedora.png
systemd startup on Fedora 17
Original author(s)Lennart Poettering[1]
Developer(s)Red Hat (Lennart Poettering, Kay Sievers, Harald Hoyer, Daniel Mack, Tom Gundersen, David Herrmann)[2] 345 different authors at 2018 and 1,317 different authors in total[3]
Initial release30 March 2010; 11 years ago (2010-03-30)
Stable release249 (July 7, 2021; 55 days ago (2021-07-07)) [4]
Repository
Written inC
Operating systemLinux
TypeSystem software
Process supervisor
LicenseLGPLv2.1+[5]
Websitesystemd.io

systemd is a software suite that provides an array of system components for Linux[6] operating systems. Its main aim is to unify service configuration and behavior across Linux distributions;[7] systemd's primary component is a "system and service manager"—an init system used to bootstrap user space and manage user processes. It also provides replacements for various daemons and utilities, including device management, login management, network connection management, and event logging. The name systemd adheres to the Unix convention of naming daemons by appending the letter d.[8] It also plays on the term "System D", which refers to a person's ability to adapt quickly and improvise to solve problems.[9] Since 2015, the majority of Linux distributions have adopted systemd, having replaced other systems such as the UNIX System V and BSD init systems. systemd has faced mixed reception from Linux users, with arguments that systemd suffers from mission creep and bloat, as well as criticism over software (such as the GNOME desktop) adding dependencies on systemd—complicating compatibility with other Unix-like operating systems, and making it hard to move away from systemd. Concerns have also been raised about Red Hat and its parent company IBM controlling the scene of init systems on Linux.[10][1]

History[]

Lennart Poettering and Kay Sievers, the software engineers working for Red Hat who initially developed systemd,[2] started the project to develop systemd in 2010.[11] They sought to surpass the efficiency of the init daemon in several ways. They wanted to improve the software framework for expressing dependencies, to allow more processing to be done concurrently or in parallel during system booting, and to reduce the computational overhead of the shell.

In May 2011 Fedora became the first major Linux distribution to enable systemd by default.[12] Between October 2013 and February 2014, a long debate among the Debian Technical Committee occurred on the Debian mailing list,[13] discussing which init system to use as the default in Debian 8 "jessie", and culminating in a decision in favor of systemd. The debate was widely publicized[14][15] and in the wake of the decision the debate continues on the Debian mailing list. In February 2014, after Debian's decision was made, Mark Shuttleworth announced on his blog that Ubuntu would follow in implementing systemd.[16][17]

In November 2014 Debian Developer Joey Hess,[18] Debian Technical Committee members Russ Allbery[19] and Ian Jackson,[20] and systemd package-maintainer Tollef Fog Heen[21] resigned from their positions. All four justified their decision on the public Debian mailing list and in personal blogs with their exposure to extraordinary stress-levels related to ongoing disputes on systemd integration within the Debian and FOSS community that rendered regular maintenance virtually impossible.

In August 2015 systemd started providing a login shell, callable via machinectl shell.[22]

In September 2016, a security bug was discovered that allowed any unprivileged user to perform a denial-of-service attack against systemd.[23] Rich Felker, developer of musl, stated that this bug reveals a major "system development design flaw".[24] In 2017 another security bug was discovered in systemd, CVE-2017-9445, which "allows disruption of service" by a "malicious DNS server".[25][26]

Design[]

The architecture of systemd as it is used by Tizen. Several systemd targets, including telephony, bootmode, dlog, and tizen service are from Tizen and are not components of systemd.[27]
Unified-hierarchy cgroups will be accessible exclusively by systemd through systemd-nspawn[28]

Poettering describes systemd development as "never finished, never complete, but tracking progress of technology". In May 2014, Poettering further described systemd as unifying "pointless differences between distributions", by providing the following three general functions:[29]

  • A system and service manager (manages both the system, by applying various configurations, and its services)
  • A software platform (serves as a basis for developing other software)
  • The glue between applications and the kernel (provides various interfaces that expose functionalities provided by the kernel)

Systemd includes features like on-demand starting of daemons, snapshot support, process tracking[30] and Inhibitor Locks.[31] It is not just the name of the init daemon but also refers to the entire software bundle around it, which, in addition to the systemd init daemon, includes the daemons journald, logind and networkd, and many other low-level components. In January 2013, Poettering described systemd not as one program, but rather a large software suite that includes 69 individual binaries.[32] As an integrated software suite, systemd replaces the startup sequences and runlevels controlled by the traditional init daemon, along with the shell scripts executed under its control. systemd also integrates many other services that are common on Linux systems by handling user logins, the system console, device hotplugging (see udev), scheduled execution (replacing cron), logging, hostnames and locales.

Like the init daemon, systemd is a daemon that manages other daemons, which, including systemd itself, are background processes. systemd is the first daemon to start during booting and the last daemon to terminate during shutdown. The systemd daemon serves as the root of the user space's process tree; the first process (PID 1) has a special role on Unix systems, as it replaces the parent of a process when the original parent terminates. Therefore, the first process is particularly well suited for the purpose of monitoring daemons.

systemd executes elements of its startup sequence in parallel, which is theoretically faster than the traditional startup sequence approach.[33] For inter-process communication (IPC), systemd makes Unix domain sockets and D-Bus available to the running daemons. The state of systemd itself can also be preserved in a snapshot for future recall.

Core components and libraries[]

Following its integrated approach, systemd also provides replacements for various daemons and utilities, including the startup shell scripts, pm-utils, inetd, acpid, syslog, watchdog, cron and atd. systemd's core components include the following:

  • systemd is a system and service manager for Linux operating systems.
  • systemctl is a command to introspect and control the state of the systemd system and service manager. Not to be confused with sysctl.
  • systemd-analyze may be used to determine system boot-up performance statistics and retrieve other state and tracing information from the system and service manager.

systemd tracks processes using the Linux kernel's cgroups subsystem instead of using process identifiers (PIDs); thus, daemons cannot "escape" systemd, not even by double-forking. systemd not only uses cgroups, but also augments them with systemd-nspawn and machinectl, two utility programs that facilitate the creation and management of Linux containers.[34] Since version 205, systemd also offers ControlGroupInterface, which is an API to the Linux kernel cgroups.[35] The Linux kernel cgroups are adapted to support kernfs,[36] and are being modified to support a unified hierarchy.[37]

Ancillary components[]

Beside its primary purpose of providing a Linux init system, the systemd suite can provide additional functionality, including the following components:

A screenshot of systemd-boot
A screenshot of timedatectl
journald
systemd-journald is a daemon responsible for event logging, with append-only binary files serving as its logfiles. The system administrator may choose whether to log system events with systemd-journald, syslog-ng or rsyslog. The potential for corruption of the binary format has led to much heated debate.[38]
libudev
libudev is the standard library for utilizing udev, which allows third-party applications to query udev resources.
localed
logind
systemd-logind is a daemon that manages user logins and seats in various ways. It is an integrated login manager that offers multiseat improvements[39] and replaces ConsoleKit, which is no longer maintained.[40] For X11 display managers the switch to logind requires a minimal amount of porting.[41] It was integrated in systemd version 30.
networkd
networkd is a daemon to handle the configuration of the network interfaces; in version 209, when it was first integrated, support was limited to statically assigned addresses and basic support for bridging configuration.[42][43][44][45][46] In July 2014, systemd version 215 was released, adding new features such as a DHCP server for IPv4 hosts, and VXLAN support.[47][48] networkctl may be used to review the state of the network links as seen by systemd-networkd.[49] Configuration of new interfaces has to be added under the /lib/systemd/network/ as a new file ending with .network extension.
resolved
systemd-boot
systemd-boot is a boot manager, formerly known as gummiboot. Kay Sievers merged it into systemd with rev 220.
timedated
systemd-timedated is a daemon that can be used to control time-related settings, such as the system time, system time zone, or selection between UTC and local time-zone system clock. It is accessible through D-Bus.[50] It was integrated in systemd version 30.
timesyncd
tmpfiles
systemd-tmpfiles is a utility that takes care of creation and clean-up of temporary files and directories. It is normally run once at startup and then in specified intervals.
udevd
udev is a device manager for the Linux kernel, which handles the /dev directory and all user space actions when adding/removing devices, including firmware loading. In April 2012, the source tree for udev was merged into the systemd source tree.[51][52]
On 29 May 2014, support for firmware loading through udev was dropped from systemd, as it was decided that the kernel should be responsible for loading firmware.[53]

Configuration of systemd[]

systemd-manager, a tool to configure systemd

systemd is configured exclusively via plain-text files.

systemd records initialization instructions for each daemon in a configuration file (referred to as a "unit file") that uses a declarative language, replacing the traditionally used per-daemon startup shell scripts. The syntax the language is inspired by the .ini files.[54]

Unit-file types[55] include:

  • .service
  • .socket
  • .device (automatically initiated by systemd[56])
  • .mount
  • .automount
  • .swap
  • .target
  • .path
  • .timer (which can be used as a cron-like job scheduler[57])
  • .snapshot
  • .slice (used to group and manage processes and resources[58])
  • .scope (used to group worker processes, isn't intended to be configured via unit files[59])

Hierarchy of configuration files[]

man systemd.unit explains the hierarchy of the configuration files. Their paths are defined during compilation. The default is (the example isn't complete though):

UNIT LOAD PATH
          Unit files are loaded from a set of paths determined during
          compilation, described in the two tables below. Unit files found
          in directories listed earlier override files with the same name
          in directories lower in the list.

           Table 1.  Load path when running in system mode (--system).
           ┌────────────────────────┬─────────────────────────────┐
           │Path                    │ Description                 │
           ├────────────────────────┼─────────────────────────────┤
           │/etc/systemd/system     │ Local configuration         │
           ├────────────────────────┼─────────────────────────────┤
           │/run/systemd/system     │ Runtime units               │
           ├────────────────────────┼─────────────────────────────┤
           │/usr/lib/systemd/system │ Units of installed packages │
           └────────────────────────┴─────────────────────────────┘

Adoption[]

Linux distribution Date added to software repository[a] Enabled by default? Date released as default Runs without?
Alpine Linux N/A (not in repository) No N/A Yes
Android N/A (not in repository) No N/A Yes
Arch Linux January 2012[60] Yes October 2012[61] No
antiX Linux N/A (not in repository) No N/A Yes
Artix Linux N/A (not in repository) No N/A Yes
CentOS July 2014 Yes July 2014 (v7.0) No
CoreOS July 2013 Yes October 2013 (v94.0.0)[62][63] No
Debian April 2012[64] Yes April 2015 (v8.0)[65] Yes[66]
Devuan N/A (not in repository) No N/A Yes
Fedora November 2010 (v14)[67] Yes May 2011 (v15) No
Gentoo Linux[b] July 2011[68][70][71] No N/A Yes
Knoppix N/A No [72][73] N/A Yes
Linux Mint June 2016 (v18.0) Yes N/A Yes
Mageia January 2011 (v1.0)[74] Yes May 2012 (v2.0)[75] No [76]
Manjaro Linux November 2013 Yes November 2013 No
openSUSE March 2011 (v11.4)[77] Yes September 2012 (v12.2)[78] No
Parabola GNU/Linux-libre January 2012[60] Optional[79] N/A Yes
Red Hat Enterprise Linux June 2014 (v7.0)[80] Yes June 2014 (v7.0) No
Slackware N/A (not in repository) No N/A Yes
Solus N/A Yes N/A No
Source Mage June 2011[81] No N/A Yes
SUSE Linux Enterprise Server October 2014 (v12) Yes October 2014 (v12) No
Ubuntu April 2013 (v13.04) Yes April 2015 (v15.04) Upstart option removed in Yaketty (16.10)[82][83][c]
Void Linux June 2011, removed June 2015 [84] No N/A Yes

While many distributions boot systemd by default, some allow other init systems to be used; in this case switching the init system is possible by installing the appropriate packages. A fork of Debian called Devuan was developed to avoid systemd[85][86] and has reached version 3.1 for stable usage. In December 2019, the Debian project voted in favour of retaining systemd as the default init system for the distribution, but with support for "exploring alternatives".[87]

Integration with other software[]

In the interest of enhancing the interoperability between systemd and the GNOME desktop environment, systemd coauthor Lennart Poettering asked the GNOME Project to consider making systemd an external dependency of GNOME 3.2.[88]

In November 2012, the GNOME Project concluded that basic GNOME functionality should not rely on systemd.[89] However, GNOME 3.8 introduced a compile-time choice between the logind and ConsoleKit API, the former being provided at the time only by systemd. Ubuntu provided a separate logind binary but systemd became a de facto dependency of GNOME for most Linux distributions, in particular since ConsoleKit is no longer actively maintained and upstream recommends the use of systemd-logind instead.[90] The developers of Gentoo Linux also attempted to adapt these changes in OpenRC, but the implementation contained too many bugs, causing the distribution to mark systemd as a dependency of GNOME.[91][92]

GNOME has further integrated logind.[93] As of Mutter version 3.13.2, logind is a dependency for Wayland sessions.[94]

Reception[]

The design of systemd has ignited controversy within the free-software community. Critics regard systemd as overly complex and suffering from continued feature creep, arguing that its architecture violates the Unix philosophy. There is also concern that it forms a system of interlocked dependencies, thereby giving distribution maintainers little choice but to adopt systemd as more user-space software comes to depend on its components.[95]

In a 2012 interview, Slackware's lead Patrick Volkerding expressed reservations about the systemd architecture, stating his belief that its design was contrary to the Unix philosophy of interconnected utilities with narrowly defined functionalities.[96] As of August 2018, Slackware does not support or use systemd, but Volkerding has not ruled out the possibility of switching to it.[97]

In January 2013, Lennart Poettering attempted to address concerns about systemd in a blog post called The Biggest Myths.[32]

In February 2014, musl's Rich Felker opined that PID 1 is too special to be saddled with additional responsibilities. PID 1 should only be responsible for starting the rest of the init system and reaping zombie processes. The additional functionality added by systemd can be provided elsewhere and unnecessarily increases the complexity and attack surface of PID 1.[98]

In March 2014 Eric S. Raymond opined that systemd's design goals were prone to mission creep and software bloat.[99] In April 2014, Linus Torvalds expressed reservations about the attitude of Kay Sievers, a key systemd developer, toward users and bug reports in regard to modifications to the Linux kernel submitted by Sievers.[100] In late April 2014 a campaign to boycott systemd was launched, with a website listing various reasons against its adoption.[101][102]

In an August 2014 article published in InfoWorld, Paul Venezia wrote about the systemd controversy and attributed the controversy to violation of the Unix philosophy, and to "enormous egos who firmly believe they can do no wrong".[103] The article also characterizes the architecture of systemd as similar to that of svchost.exe, a critical system component in Microsoft Windows with a broad functional scope.[103]

In a September 2014 ZDNet interview, prominent Linux kernel developer Theodore Ts'o expressed his opinion that the dispute over systemd's centralized design philosophy, more than technical concerns, indicates a dangerous general trend toward uniformizing the Linux ecosystem, alienating and marginalizing parts of the open-source community, and leaving little room for alternative projects. He cited similarities with the attitude he found in the GNOME project toward non-standard configurations.[104] On social media, Ts'o also later compared the attitudes of Sievers and his co-developer, Lennart Poettering, to that of GNOME's developers.[105]

Forks and alternative implementations[]

Forks of systemd are closely tied to critiques of it outlined in the above section. Forks generally try to improve on at least one of portability (to other libcs and Unix-like systems), modularity, or size. A few forks have collaborated under the FreeInit banner.[106]

Fork of components[]

eudev[]

In 2012, the Gentoo Linux project created a fork of udev in order to avoid dependency on the systemd architecture. The resulting fork is called eudev and it makes udev functionality available without systemd.[107] A stated goal of the project is to keep eudev independent of any Linux distribution or init system.[108]

elogind[]

Elogind is the systemd project's "logind", extracted out to be a standalone daemon. It integrates with PAM to know the set of users that are logged into a system and whether they are logged in graphically, on the console, or remotely. Elogind exposes this information via the standard org.freedesktop.login1 D-Bus interface, as well as through the file system using systemd's standard /run/systemd layout. Elogind also provides "libelogind", which is a subset of the facilities offered by "libsystemd". There is a "libelogind.pc" pkg-config file as well.[109]

consolekit2[]

ConsoleKit was forked in October 2014 by Xfce developers wanting its features to still be maintained and available on operating systems other than Linux. While not ruling out the possibility of reviving the original repository in the long term, the main developer considers ConsoleKit2 a temporary necessity until systembsd matures.[110] Development ceased in December 2017 and the project may be defunct.[111]

LoginKit[]

LoginKit was an attempt to implement a logind (systemd-logind) shim, which would allow packages that depend on systemd-logind to work without dependency on a specific init system.[112] The project has been defunct since February 2015.[113]

systembsd[]

In 2014, a Google Summer of Code project named "systembsd" was started in order to provide alternative implementations of these APIs for OpenBSD. The original project developer began it in order to ease his transition from Linux to OpenBSD.[114] Project development halted in July 2016.[115]

The systembsd project did not provide an init replacement, but aimed to provide OpenBSD with compatible daemons for hostnamed, timedated, localed, and logind. The project did not create new systemd-like functionality, and was only meant to act as a wrapper over the native OpenBSD system. The developer aimed for systembsd to be installable as part of the ports collection, not as part of a base system, stating that, "systemd and *BSD differ fundamentally in terms of philosophy and development practices."[114]

notsystemd[]

Notsystemd intends to implement all systemd's features working on any init system.[116] It was forked by the Parabola GNU/Linux-libre developers to build packages with their development tools without the necessity of having systemd installed to run systemd-nspawn.

Fork including init system[]

uselessd[]

In 2014, uselessd was created as a lightweight fork of systemd. The project sought to remove features and programs deemed unnecessary for an init system, as well as address other perceived faults.[117] Project development halted in January 2015.[118]

uselessd supported the musl and µClibc libraries, so it may have been used on embedded systems, whereas systemd only supports glibc. The uselessd project had planned further improvements on cross-platform compatibility, as well as architectural overhauls and refactoring for the Linux build in the future.[119]

s6[]

s6 is a small suite of programs for UNIX, designed to allow process supervision (a.k.a. service supervision), in the line of daemontools and runit, as well as various operations on processes and daemons. It is meant to be a toolbox for low-level process and service administration, providing different sets of independent tools that can be used within or without the framework, and that can be assembled together to achieve powerful functionality with a very small amount of code.[120]

InitWare[]

InitWare is a modular refactor of systemd, porting the system to BSD platforms without glibc or Linux-specific system calls. It is known to work on DragonFly BSD, FreeBSD, NetBSD, and GNU/Linux. Components considered unnecessary are dropped.[121]

See also[]

Notes[]

  1. ^ Dates are for the general availability release.
  2. ^ systemd is supported in Gentoo as an alternative to OpenRC, the default init system[68] for those who "want to use systemd instead, or are planning to use Gnome 3.8 and later (which requires systemd)"[69]
  3. ^ Missing functionality using init systems other than systemd[citation needed]

References[]

  1. ^ Jump up to: a b "Lennart Poettering on systemd's Tumultuous Ascendancy". Retrieved 7 November 2018.
  2. ^ Jump up to: a b "systemd README", freedesktop.org, retrieved 9 September 2012
  3. ^ "Systemd Hits A High Point For Number Of New Commits & Contributors During 2018 - Phoronix".
  4. ^ "Release v249". 7 July 2021. Retrieved 8 July 2021.
  5. ^ Poettering, Lennart (21 April 2012), systemd Status Update, retrieved 28 April 2012
  6. ^ "Rethinking PID 1". 30 April 2010. systemd uses many Linux-specific features, and does not limit itself to POSIX. That unlocks a lot of functionality a system that is designed for portability to other operating systems cannot provide.
  7. ^ "InterfaceStabilityPromise". FreeDesktop.org. Retrieved 14 February 2018.
  8. ^ "systemd System and Service Manager". freedesktop.org. Yes, it is written systemd, not system D or System D, or even SystemD. And it isn't system d either. Why? Because it's a system daemon, and under Unix/Linux those are in lower case, and get suffixed with a lower case d.
  9. ^ Poettering, Lennart; Sievers, Kay; Leemhuis, Thorsten (8 May 2012), Control Centre: The systemd Linux init system, The H, archived from the original on 14 October 2012, retrieved 9 September 2012
  10. ^ Saunders, Mike (11 November 2015). "Linux 101: Get the most out of systemd". Linux Voice. Retrieved 28 January 2016.
  11. ^ Simmonds, Chris (2015). "9: Starting up - the init Program". Mastering Embedded Linux Programming. Packt Publishing Ltd. p. 239. ISBN 9781784399023. Retrieved 20 June 2016. systemd defines itself as a system and service manager. The project was initiated in 2010 by Lennart Poettering and Kay Sievers to create an integrated set of tools for managing a Linux system including an init daemon.
  12. ^ "F15 one page release notes", fedoraproject.org, 24 May 2001
  13. ^ "#727708 - tech-ctte: Decide which init system to default to in Debian". 25 October 2013. Retrieved 14 September 2014.
  14. ^ "Which init system for Debian?". 5 November 2013. Retrieved 14 September 2014.
  15. ^ "Debian Still Debating systemd Vs. Upstart Init System". Phoronix. 30 December 2013. Retrieved 14 September 2014.
  16. ^ "Losing graciously". 14 February 2014. Retrieved 14 September 2014.
  17. ^ "Quantal, raring, saucy..." 18 October 2013. Retrieved 14 September 2014.
  18. ^ Hess, Joey. "on leaving". Retrieved 15 July 2015.
  19. ^ Allbery, Russ (16 November 2014). "Resigning from the Technical Committee". debian-ctte (Mailing list). Retrieved 15 July 2015.
  20. ^ Jackson, Ian (19 November 2014). "Resignation". debian-ctte (Mailing list). Retrieved 15 July 2015.
  21. ^ Heen, Tollef Fog (16 November 2014). "Resignation from the pkg-systemd maintainer team". pkg-systemd-maintainers (Mailing list). Retrieved 15 July 2015.
  22. ^ Carroty, Paul (28 August 2015). "Lennart Poettering merged "su" command replacement into systemd: Test Drive on Fedora Rawhide". Archived from the original on 4 September 2015.
  23. ^ "Assertion failure when PID 1 receives a zero-length message over notify socket #4234". 28 September 2016.
  24. ^ Felker, Rich (3 October 2016). "Hack Crashes Linux Distros with 48 Characters of Code". Kaspersky Lab.
  25. ^ "CVE-2017-9445 Details", National Vulnerability Database, National Institute of Standards and Technology (U.S.), 6 July 2017, retrieved 6 July 2018
  26. ^ "CVE-2017-9445", The Common Vulnerabilities and Exposures database, The Mitre Corporation, 5 June 2017, retrieved 6 July 2018
  27. ^ Gundersen, Tom E. (25 September 2014). "The End of Linux". Retrieved 25 October 2014. It certainly is not something that comes with systemd from upstream.
  28. ^ "The New Control Group Interfaces". Freedesktop.org. 28 August 2015. Retrieved 6 February 2016.
  29. ^ Poettering, Lennart (May 2014). "A Perspective for systemd: What Has Been Achieved, and What Lies Ahead" (PDF). Retrieved 30 November 2014.
  30. ^ "What is systemd?". Linode. 11 September 2019.
  31. ^ "Inhibitor Locks". freedesktop.org.
  32. ^ Jump up to: a b Poettering, Lennart (26 January 2013). "The Biggest Myths".
  33. ^ "Debate/initsystem/systemd – Debian Documentation". Debian. 2 January 2014. Retrieved 4 December 2014.
  34. ^ Edge, Jake (7 November 2013). "Creating containers with systemd-nspawn". LWN.net. Retrieved 30 July 2014.
  35. ^ "ControlGroupInterface". freedesktop.org. Retrieved 9 November 2014.
  36. ^ Heo, Tejun (28 January 2014). "cgroup: convert to kernfs". linux-kernel (Mailing list).
  37. ^ Heo, Tejun (13 March 2014). "cgroup: prepare for the default unified hierarchy". linux-kernel (Mailing list).
  38. ^ "systemd's binary logs and corruption". Retrieved 21 January 2016.
  39. ^ "systemd-logind.service". freedesktop.org. Retrieved 17 February 2014.
  40. ^ "ConsoleKit official website". freedesktop.org. Retrieved 9 November 2014.
  41. ^ "How to hook up your favorite X11 display manager with systemd". freedesktop.org.
  42. ^ "Networking in +systemd - 1. Background". 27 November 2013. Retrieved 22 February 2014.
  43. ^ "Networking in +systemd - 2. libsystemd-rtnl". 27 November 2013. Retrieved 22 February 2014.
  44. ^ "Networking in +systemd - 3. udev". 27 November 2013. Retrieved 22 February 2014.
  45. ^ "Networking in +systemd - 4. networkd". 27 November 2013. Retrieved 22 February 2014.
  46. ^ "Networking in +systemd - 5. the immediate future". 27 November 2013. Retrieved 22 February 2014.
  47. ^ Larabel, Michael (4 July 2014). "systemd 215 Works On Factory Reset, DHCPv4 Server Support". Retrieved 8 November 2014.
  48. ^ Šimerda, Pavel (3 February 2013). "Can Linux network configuration suck less?".
  49. ^ networkctl(1) – Linux User Manual – User Commands
  50. ^ "timedated". freedesktop.org. Retrieved 9 November 2014.
  51. ^ Sievers, Kay. "The future of the udev source tree". vger.kernel.org/vger-lists.html#linux-hotplug linux-hotplug (Mailing list). Retrieved 22 May 2013.
  52. ^ Sievers, Kay, "Commit importing udev into systemd", freedesktop.org, retrieved 25 May 2012
  53. ^ "[systemd-devel] [PATCH] Drop the udev firmware loader". 29 May 2014.
  54. ^ "systemd.syntax". www.freedesktop.org. Retrieved 27 July 2021.
  55. ^ "systemd.unit man page". freedesktop.org.
  56. ^ "systemd.device". www.freedesktop.org. Retrieved 27 July 2021.
  57. ^ "systemd Dreams Up New Feature, Makes It Like Cron". Phoronix. 28 January 2013. Retrieved 22 January 2014.
  58. ^ "systemd.slice (5) - Linux Man Pages". Retrieved 12 March 2018. [...] a slice [...] is a concept for hierarchically managing resources of a group of processes.
  59. ^ "systemd.scope". www.freedesktop.org. Retrieved 27 July 2021.
  60. ^ Jump up to: a b "Git clone of the 'packages' repository". Web interface to the Arch Linux git repositories. 12 January 2012.
  61. ^ "systemd is now the default on new installations". Arch Linux.
  62. ^ "coreos/manifest: Releases: v94.0.0". github.com. 3 October 2013. Retrieved 22 September 2014.
  63. ^ "CoreOS's init system", coreos.com, archived from the original on 14 February 2014, retrieved 14 February 2014
  64. ^ "systemd". debian.org. Retrieved 19 November 2014.
  65. ^ Garbee, Bdale (11 February 2014). "Bug#727708: call for votes on default Linux init system for jessie". debian-ctte (Mailing list).
  66. ^ "Installing without systemd". Retrieved 3 April 2018.
  67. ^ "Fedora 14 talking points".
  68. ^ Jump up to: a b "systemd", wiki.gentoo.org, retrieved 26 August 2012
  69. ^ "Installing the Gentoo Base System § Optional: Using systemd".
  70. ^ "Comment #210 (bug #318365)", gentoo.org, retrieved 5 July 2011
  71. ^ "systemd", gentoo.org, retrieved 5 July 2011
  72. ^ "KNOPPIX 7.4.2 Release Notes". Archived from the original on 6 January 2018. Retrieved 26 April 2018. ...script-based KNOPPIX system start with sysvinit
  73. ^ "KNOPPIX 8.0 Die Antwort auf Systemd (German)". Archived from the original on 13 June 2018. Retrieved 13 June 2018. ...Knoppix 'boot process continues to run via Sys-V init with few bash scripts that start the system services efficiently sequentially or in parallel. (The original German text: Knoppix' Startvorgang läuft nach wie vor per Sys-V-Init mit wenigen Bash-Skripten, welche die Systemdienste effizient sequenziell oder parallel starten.)
  74. ^ ChangeLog of Mageia's systemd package
  75. ^ Scherschel, Fabian (23 May 2012), Mageia 2 arrives with GNOME 3 and systemd, The H, archived from the original on 8 December 2013, retrieved 22 August 2012
  76. ^ https://forums.mageia.org/en/viewtopic.php?f=7&t=11169
  77. ^ Directory view of the 11.4 i586 installation showing presence of the systemd v18 installables, 23 February 2011, retrieved 24 September 2013
  78. ^ "OpenSUSE: Not Everyone Likes systemd". Phoronix. The recently released openSUSE 12.2 does migrate from SysVinit to systemd
  79. ^ "Parabola ISO Download Page".
  80. ^ Red Hat Unveils Red Hat Enterprise Linux 7, 10 June 2014
  81. ^ "Initial entry of the "systemd" spell".
  82. ^ "Ubuntu Wiki: Switching init systems". Retrieved 3 July 2016.
  83. ^ "Linked packages : upstart". Launchpad. Retrieved 17 June 2019.
  84. ^ "Void-Package: systemd: removed; no plans to resurrect this".
  85. ^ "Meet Devuan, the Debian fork born from a bitter systemd revolt".
  86. ^ Sharwood, Simon (5 May 2017). "systemd-free Devuan Linux hits RC2". The Register. Retrieved 5 May 2017.
  87. ^ "Debian Developers Decide On Init System Diversity: "Proposal B" Wins". Phoronix. Retrieved 28 December 2019.
  88. ^ Poettering, Lennart (18 May 2011). "systemd as an external dependency". desktop-devel (Mailing list). GNOME. Retrieved 26 May 2011.
  89. ^ Peters, Frederic (4 November 2011). "20121104 meeting minutes". GNOME release-team (Mailing list). Retrieved 14 January 2013.
  90. ^ "ConsoleKit". Retrieved 15 November 2014. ConsoleKit is currently not actively maintained. The focus has shifted to the built-in seat/user/session management of Software/systemd called systemd-logind!
  91. ^ Vitters, Olav. "GNOME and logind+systemd thoughts". Retrieved 24 April 2014.
  92. ^ "GNOME 3.10 arrives with experimental Wayland support". ZDNet. Retrieved 24 April 2014.
  93. ^ "GNOME initiatives: systemd". Retrieved 9 May 2018.
  94. ^ "Mutter 3.13.2: launcher: Replace mutter-launch with logind integration". 19 May 2014. Retrieved 28 May 2014.
  95. ^ Vaughan-Nichols, Steven (19 September 2014). "Linus Torvalds and others on Linux's systemd". ZDNet. CBS Interactive.
  96. ^ "Interview with Patrick Volkerding of Slackware". linuxquestions.org. 7 June 2012. Retrieved 19 March 2014.
  97. ^ "I'm back after a break from Slackware: sharing thoughts and seeing whats new!". linuxquestions.org. Retrieved 14 March 2014.
  98. ^ Broken by design: systemd, Rich Felker, main author of musl, 2014-02-09.
  99. ^ "Interviews: ESR Answers Your Questions". Slashdot.org. 10 March 2014. Retrieved 19 March 2014.
  100. ^ Torvalds, Linus (2 April 2014). "Re: [RFC PATCH] cmdline: Hide "debug" from /proc/cmdline". linux-kernel (Mailing list). Retrieved 8 July 2014.
  101. ^ "Is systemd as bad as boycott systemd is trying to make it?". LinuxBSDos.com. Retrieved 22 September 2014.
  102. ^ "Boycott systemd.org". Archived from the original on 6 May 2014. Retrieved 15 July 2015.
  103. ^ Jump up to: a b Venezia, Paul (18 August 2014). "systemd: Harbinger of the Linux apocalypse". Retrieved 20 September 2014.
  104. ^ "Linus Torvalds and others on Linux's systemd". Retrieved 21 November 2014.
  105. ^ "A realization that I recently came to while discussing the whole systemd..." 31 March 2014. Archived from the original on 17 July 2014. Retrieved 8 July 2014.
  106. ^ "FreeInit.org". www.freeinit.org.
  107. ^ "eudev/README". Archived from the original on 16 February 2015. Retrieved 1 June 2015.
  108. ^ "Gentoo eudev project". Retrieved 1 June 2015.
  109. ^ "elogind/README". Retrieved 2 September 2015.
  110. ^ Koegel, Eric (20 October 2014). "ConsoleKit2". Retrieved 7 March 2015.
  111. ^ "ConsoleKit2 (Github)". Retrieved 8 July 2018.
  112. ^ "loginkit/README". Retrieved 4 December 2014.
  113. ^ "dimkr/LoginKit (Github)". Retrieved 8 July 2018.
  114. ^ Jump up to: a b "GSoC 2014: systemd replacement utilities (systembsd)". OpenBSD Journal. Retrieved 28 November 2014.
  115. ^ projects / systembsd.git / summary, retrieved 8 July 2018
  116. ^ Luke Shumaker (17 June 2017). "notsystemd v232.1 release announcement". Dev@lists.parabola.nu (Mailing list).
  117. ^ Larabel, Michael (21 September 2014). "Uselessd: A Stripped Down Version Of systemd". Phoronix. Retrieved 26 October 2014.
  118. ^ "Uselessd is dead". Uselessd website. Retrieved 17 February 2017.
  119. ^ "uselessd :: information system". uselessd.darknedgy.net. Retrieved 26 October 2014.
  120. ^ "skarnet.org/s6". Retrieved 10 June 2020.
  121. ^ "InitWare/InitWare: The InitWare Suite of Middleware allows you to manage services and system resources as logical entities called units. Its main component is a service management ("init") system". GitHub.

External links[]

Retrieved from ""