systemd

For other uses, see System D (disambiguation).
systemd

systemd startup on Debian GNU/Linux
Original author(s) Lennart Poettering, Kay Sievers, Harald Hoyer, Daniel Mack, Tom Gundersen and David Herrmann
Developer(s) Lennart Poettering, Kay Sievers, Harald Hoyer, Daniel Mack, Tom Gundersen, David Herrmann, and others[1]
Initial release 30 March 2010 (2010-03-30)
Stable release 232 (November 3, 2016 (2016-11-03)) [±][2]
Preview release 230 (May 21, 2016 (2016-05-21)) [±][3]
Repository github.com/systemd/systemd.git
Written in C[4]
Operating system Linux
Type System software
License GNU LGPL 2.1+[5]
Website freedesktop.org/.../systemd/

systemd is an init system used in Linux distributions to bootstrap the user space and manage all processes subsequently, instead of the UNIX System V or Berkeley Software Distribution (BSD) init systems. The name systemd adheres to the Unix convention of naming daemons by appending the letter d.[6] It is published as free and open-source software under the terms of the GNU Lesser General Public License (LGPL) version 2.1 or later.[5] One of systemd's main goals is to unify basic Linux configurations and service behaviors across all distributions.[7]

As of 2015, most Linux distributions have adopted systemd as their default init system.[8] The increasing adoption of systemd has been controversial, with critics arguing the software has violated the Unix philosophy by becoming increasingly complex, and that distributions have been forced to adopt it due to the dependency of various other software upon it, including, most notably, the GNOME 3 desktop environment.

Design

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

Lennart Poettering and Kay Sievers, the software engineers working for Red Hat who initially developed systemd,[1] 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.

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

systemd 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.[12] 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 receives a SIGCHLD signal when a daemon process (which has detached from its parent) terminates. Therefore, the first process is particularly well suited for the purpose of monitoring daemons; systemd attempts to improve in that particular area over the traditional approach, which would usually not restart daemons automatically but only launch them once without further monitoring.

systemd executes elements of its startup sequence in parallel, which is faster than the traditional startup sequence's sequential approach.[13] 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.

Unit 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. Unit file types include service, socket, device, mount, automount, swap, target, path, timer (which can be used as a cron-like job scheduler[14]), snapshot, slice and scope.[15]

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 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.[16] Since version 205, systemd also offers ControlGroupInterface, which is an API to the Linux kernel cgroups.[17] The Linux kernel cgroups are adapted to support kernfs,[18] and are being modified to support a unified hierarchy.[19]

Ancillary components

Beside its primary purpose of providing a replacement Linux init system, systemd suite provides additional functionality, including its following components:

consoled
systemd-consoled was a user console daemon, intending to replace the Linux kernel's virtual terminal support with a more capable userspace component.[20] Its preview version was released in October 2014, as part of systemd version 217.[21] systemd-consoled was removed from systemd on July 29, 2015 by David Herrmann.[22]
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 corruption and obfuscation of the binary format has led to much heated debate.[23]
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[24] and replaces ConsoleKit, which is no longer maintained.[25] For X11 display managers the switch to logind requires a minimal amount of porting.[26] 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.[27][28][29][30][31] In July 2014, systemd version 215 was released, adding new features such as a DHCP server for IPv4 hosts, and VXLAN support.[32][33]
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.[34] It was integrated in systemd version 30.
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.[35][36]
libudev
It is the standard library for utilizing udev, which allows third-party applications to query udev resources.
systemd-boot
systemd-boot is a boot manager, formerly known as gummiboot. Kay Sievers merged it into systemd with rev 220.

Graphical frontends

Screenshot of systemd-ui, a GTK+-based frontend for systemd.

A few graphical frontends are available, including:

systemd-ui
Also known as systemadm, it is a simple GTK+-based graphical front-end for systemd.[37] It provides a simple user interface to manage services and a graphical agent to request passwords from the user. As of 2014 the systemadm program has received little development or maintenance in the last few years, because development focus has shifted to command-line tools like systemctl and systemd-analyze.
systemd-kcm
Provides a graphical systemd frontend for the KDE Plasma 5 desktop. It integrates into the system settings window and allows monitoring and controlling of systemd units and logind sessions, as well as graphical editing of configuration files.[38]

Adoption and reception

While most 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 has been proposed to avoid systemd.[39]

systemd adoption of major Linux distributions
Linux distribution Date added to software repository[lower-alpha 1] Enabled by default? Date released as default Can run without?
Android N/A (not in repository) N/A N/A Yes
Arch Linux January 2012[40] Yes October 2012[41] No[42]
CentOS April 2014 Yes April 2014 (7.14.04) No
CoreOS July 2013 Yes October 2013 (v94.0.0)[43][44] ?
Debian April 2012[45] Yes April 2015 (v8)[46] Yes
Fedora November 2010 (v14)[47] Yes May 2011 (v15) No
Gentoo Linux[lower-alpha 2] July 2011[48][50][51] No N/A Yes
Mageia January 2011 (v1.0)[52] Yes May 2012 (v2.0)[53] ?
openSUSE March 2011 (v11.4)[54] Yes September 2012 (v12.2)[55] No
Red Hat Enterprise Linux June 2014 (v7.0)[56] Yes June 2014 (v7.0) No
Slackware N/A (not in repository) N/A 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) Yes[57]

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.[58]

In November 2012, the GNOME Project concluded that basic GNOME functionality should not rely on systemd.[59] 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.[60] 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.[61][62]

GNOME has further integrated logind.[63] As of Mutter version 3.13.2, logind is a dependency for Wayland sessions.[64] There are plans to replace gnome-session with systemd, but systemd would not be running as PID 1 and gnome-session would remain available on non-Linux systems. Since systemd supports only Linux and cannot be easily ported to other operating systems due to the heavy use of Linux kernel APIs, there is a need to offer compatible APIs on other operating systems such as OpenBSD.

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. In this he found similarities with the attitude he found in the GNOME project toward non-standard configurations.[65] On social media, Ts'o also later compared the attitudes of two key developers to that of GNOME's developers.[66]

History

Lennart Poettering and Kay Sievers started the project to develop systemd in 2010.[67]

The design of systemd has ignited controversy within the free-software community. Critics regard systemd as overly complex and suffering from continued feature creep; they claim that its architecture violates the design principles of Unix-like operating systems. There is also concern, Ts'o was mentioned at the end of the Integration with other software paragraph, that it forms a system of interlocked dependencies, thereby giving distribution maintainers little choice but to adopt systemd as more user-space software come to depend on its components.[68]

In May 2011 Fedora became the first major Linux distribution to enable systemd by default.[69]

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.[70] As of August 2014, Slackware does not support or use systemd, but Volkerding has not ruled out the possibility of switching to it.[71]

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

Between October 2013 and February 2014, a long debate among the Debian Technical Committee occurred on the Debian mailing list,[72] 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[73][74] 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,[75] despite his earlier comments in October 2013 that described systemd as "hugely invasive and hardly justified".[76]

In March 2014 Eric S. Raymond opined that systemd's design goals were prone to mission creep and software bloat.[77] 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 sent by Sievers to the Linux kernel itself.[78] In late April 2014 a campaign to boycott systemd was launched, with a website listing various reasons against its adoption.[79][80]

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".[81] 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.[81]

In November 2014 Debian maintainers and Technical Committee members Joey Hess,[82] Russ Allbery,[83] Ian Jackson[84] and systemd package-maintainer Tollef Fog Heen[85] 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 open-source community that rendered regular maintenance virtually impossible.

In December 2014 a group calling themselves the "Veteran Unix Admins" announced a fork of Debian called Devuan. It intends to provide a Debian variant without systemd installed by default.[86]

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

In September 2016, a bug was discovered that allowed any unprivileged user to perform a denial-of-service attack against systemd.[88] Rich Felker, developer of musl, stated that this bug reveals a major "system development design flaw."[89]

Forks and alternative implementations

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.[90] A stated goal of the project is to keep eudev independent of any Linux distribution or init system.[91]

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 in to 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.[92]

uselessd

In 2014, uselessd was created as a lightweight fork of systemd. The project seeks to remove features and programs deemed unnecessary for an init system, increase implementation modularity, improve portability across platforms, as well as address other perceived faults.[93]

uselessd supports the musl and µClibc libraries, so it may be used on embedded systems, whereas systemd only supports glibc. uselessd is attempting initial support for non-Linux platforms (so far only build time being ready), whereas the systemd project does not attempt any compatibility with BSD systems.[93] The uselessd project plans further improvements on cross-platform compatibility, as well as architectural overhauls and refactoring for the Linux build in the future.[94]

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.[95]

The systembsd project will not provide an init replacement, but aims at providing OpenBSD with compatible daemons for hostnamed, timedated, localed, and logind in particular. The project does not create new systemd-like functionality, and is only meant to act as a wrapper over the native OpenBSD system. The developer aims 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."[95]

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.[96]

loginkit

LoginKit is an attempt to implement a logind (systemd-logind) shim, which allows packages that depend on it to work, without dependency on a specific init system.[97]

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[48] for those who "want to use systemd instead, or are planning to use Gnome 3.8 and later (which requires systemd)"[49]

References

  1. 1 2 "systemd README", freedesktop.org, retrieved 9 September 2012
  2. "[systemd-devel] [ANNOUNCE] systemd v232". freedesktop.org. 2016-11-03. Retrieved 2016-11-03.
  3. Poettering, Lennart (2016-05-21). "[systemd-devel] [ANNOUNCE] systemd v230". freedesktop.org. Retrieved 2016-05-21.
  4. systemd Analysis Summary, Ohloh, retrieved 16 June 2011
  5. 1 2 Poettering, Lennart (21 April 2012), systemd Status Update, retrieved 28 April 2012
  6. 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
  7. "InterfaceStabilityPromise". freedesktop.org.
  8. Saunders, Mike (11 November 2015). "Linux 101: Get the most out of systemd". Linux Voice. Retrieved 28 January 2016.
  9. 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.
  10. "The New Control Group Interfaces". Freedesktop.org. 28 August 2015. Retrieved 6 February 2016.
  11. Poettering, Lennart (May 2014). "A Perspective for systemd: What Has Been Achieved, and What Lies Ahead" (PDF). Retrieved 30 November 2014.
  12. 1 2 Poettering, Lennart (26 January 2013). "The Biggest Myths".
  13. "Debate/initsystem/systemd – Debian Documentation". Debian. 2 January 2014. Retrieved 4 December 2014.
  14. "systemd Dreams Up New Feature, Makes It Like Cron". Phoronix. 28 January 2013. Retrieved 22 January 2014.
  15. "systemd.unit man page". freedesktop.org.
  16. Edge, Jake (7 November 2013). "Creating containers with systemd-nspawn". LWN.net. Retrieved 30 July 2014.
  17. "ControlGroupInterface". freedesktop.org. Retrieved 9 November 2014.
  18. Heo, Tejun (28 January 2014). "cgroup: convert to kernfs". linux-kernel (Mailing list).
  19. Heo, Tejun (13 March 2014). "cgroup: prepare for the default unified hierarchy". linux-kernel (Mailing list).
  20. Larabel, Michael (7 October 2014). "systemd 217 Will Introduce Its New "Consoled" User Console Daemon". Retrieved 24 January 2015.
  21. Poettering, Lennart (28 October 2014). "[systemd-devel] [ANNOUNCE] systemd 217". systemd-devel (Mailing list). Retrieved 23 January 2015.
  22. "terminal: drop unfinished code by dvdhrm · Pull Request #747 · systemd/systemd". GitHub. Retrieved 2016-09-09.
  23. "systemd's binary logs and corruption". Retrieved 21 Jan 2016.
  24. "systemd-logind.service". freedesktop.org. Retrieved 17 February 2014.
  25. "ConsoleKit official website". freedesktop.org. Retrieved 9 November 2014.
  26. "How to hook up your favorite X11 display manager with systemd". freedesktop.org.
  27. "Networking in +systemd - 1. Background". 27 November 2013. Retrieved 22 February 2014.
  28. "Networking in +systemd - 2. libsystemd-rtnl". 27 November 2013. Retrieved 22 February 2014.
  29. "Networking in +systemd - 3. udev". 27 November 2013. Retrieved 22 February 2014.
  30. "Networking in +systemd - 4. networkd". 27 November 2013. Retrieved 22 February 2014.
  31. "Networking in +systemd - 5. the immediate future". 27 November 2013. Retrieved 22 February 2014.
  32. Larabel, Michael (4 July 2014). "systemd 215 Works On Factory Reset, DHCPv4 Server Support". Retrieved 8 November 2014.
  33. Šimerda, Pavel (3 February 2013). "Can Linux network configuration suck less?".
  34. "timedated". freedesktop.org. Retrieved 9 November 2014.
  35. Sievers, Kay. "The future of the udev source tree". linux-hotplug (Mailing list). Retrieved 22 May 2013.
  36. Sievers, Kay, "Commit importing udev into systemd", freedesktop.org, retrieved 25 May 2012
  37. "Details of package systemd-ui in Debian "Jessie" 8". Debian. Retrieved 31 July 2014.
  38. "Systemd-kcm 1.2.0 released". 6 July 2015.
  39. "Meet Devuan, the Debian fork born from a bitter systemd revolt".
  40. "Git clone of the 'packages' repository". Web interface to the Arch Linux git repositories. 12 January 2012.
  41. "systemd is now the default on new installations". Arch Linux.
  42. "[arch-general] systemd new dependencies impede using OpenRC".
  43. "coreos/manifest: Releases: v94.0.0". github.com. October 3, 2013. Retrieved September 22, 2014.
  44. "CoreOS's init system", coreos.com, retrieved 14 February 2014
  45. "systemd". debian.org. Retrieved 19 November 2014.
  46. Garbee, Bdale (11 February 2014). "Bug#727708: call for votes on default Linux init system for jessie". debian-ctte (Mailing list).
  47. "Fedora 14 talking points".
  48. 1 2 "systemd", wiki.gentoo.org, retrieved 26 August 2012
  49. "Installing the Gentoo Base System § Optional: Using systemd".
  50. "Comment #210 (bug #318365)", gentoo.org, retrieved 5 July 2011
  51. "systemd", gentoo.org, retrieved 5 July 2011
  52. ChangeLog of Mageia's systemd package
  53. 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
  54. Directory view of the 11.4 i586 installation showing presence of the systemd v18 installables, 23 February 2011, retrieved 24 September 2013
  55. "OpenSUSE: Not Everyone Likes systemd". Phoronix. The recently released openSUSE 12.2 does migrate from SysVinit to systemd
  56. Red Hat Unveils Red Hat Enterprise Linux 7, 10 June 2014
  57. "Ubuntu Wiki: Switching init systems". Retrieved 3 July 2016.
  58. Poettering, Lennart (18 May 2011). "systemd as an external dependency". desktop-devel (Mailing list). GNOME. Retrieved 26 May 2011.
  59. Peters, Frederic (4 November 2011). "20121104 meeting minutes". GNOME release-team (Mailing list). Retrieved 14 January 2013.
  60. "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!
  61. Vitters, Olav. "GNOME and logind+systemd thoughts". Retrieved 24 April 2014.
  62. "GNOME 3.10 arrives with experimental Wayland support". ZDNet. Retrieved 24 April 2014.
  63. "GNOME initiatives: systemd". Retrieved 1 May 2014.
  64. "Mutter 3.13.2: launcher: Replace mutter-launch with logind integration". 19 May 2014. Retrieved 28 May 2014.
  65. "Linus Torvalds and others on Linux's systemd". Retrieved 21 November 2014.
  66. "A realization that I recently came to while discussing the whole systemd...". 31 March 2014. Retrieved 8 July 2014.
  67. Simmonds, Chris (2015). "9: Starting up - the init Program". Mastering Embedded Linux Programming. Packt Publishing Ltd. p. 239. ISBN 9781784399023. Retrieved 2016-06-20. 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.
  68. Vaughan-Nichols, Steven. "Linus Torvalds and others on Linux's systemd".
  69. "F15 one page release notes", fedoraproject.org, 24 May 2001
  70. "Interview with Patrick Volkerding of Slackware". linuxquestions.org. 7 June 2012. Retrieved 19 March 2014.
  71. "I'm back after a break from Slackware: sharing thoughts and seeing whats new!". linuxquestions.org. Retrieved 14 March 2014.
  72. "#727708 - tech-ctte: Decide which init system to default to in Debian.". 25 October 2013. Retrieved 14 September 2014.
  73. "Which init system for Debian?". 5 November 2013. Retrieved 14 September 2014.
  74. "Debian Still Debating systemd Vs. Upstart Init System". Phoronix. 30 December 2013. Retrieved 14 September 2014.
  75. "Losing graciously". 14 February 2014. Retrieved 14 September 2014.
  76. "Quantal, raring, saucy...". 18 October 2013. Retrieved 14 September 2014.
  77. "Interviews: ESR Answers Your Questions". Slashdot.org. 10 March 2014. Retrieved 19 March 2014.
  78. Torvalds, Linus (2 April 2014). "Re: [RFC PATCH] cmdline: Hide "debug" from /proc/cmdline". linux-kernel (Mailing list). Retrieved 8 July 2014.
  79. "Is systemd as bad as boycott systemd is trying to make it?". LinuxToday. Retrieved 22 September 2014.
  80. "Boycott systemd.org". Archived from the original on 6 May 2014. Retrieved 15 July 2015.
  81. 1 2 Venezia, Paul (18 August 2014). "systemd: Harbinger of the Linux apocalypse". Retrieved 20 September 2014.
  82. Hess, Joey. "on leaving". Retrieved 15 July 2015.
  83. Allbery, Russ (16 November 2014). "Resigning from the Technical Committee". debian-ctte (Mailing list). Retrieved 15 July 2015.
  84. Jackson, Ian (19 November 2014). "Resignation". debian-ctte (Mailing list). Retrieved 15 July 2015.
  85. Heen, Tollef Fog (16 November 2014). "Resignation from the pkg-systemd maintainer team". pkg-systemd-maintainers (Mailing list). Retrieved 15 July 2015.
  86. "The "Devuan" Debian fork". LWN.net. Retrieved 8 December 2014.
  87. Carroty, Paul (28 August 2015). "Lennart Poettering merged "su" command replacement into systemd: Test Drive on Fedora Rawhide".
  88. "Assertion failure when PID 1 receives a zero-length message over notify socket #4234". 28 September 2016.
  89. Felker, Rich (3 October 2016). "Hack Crashes Linux Distros with 48 Characters of Code". Kaspersky Lab.
  90. "eudev/README". Retrieved 1 June 2015.
  91. "Gentoo eudev project". Retrieved 1 June 2015.
  92. "elogind/README". Retrieved 2 September 2015.
  93. 1 2 Larabel, Michael (21 September 2014). "Uselessd: A Stripped Down Version Of systemd". Phoronix. Retrieved 26 October 2014.
  94. "uselessd :: information system". uselessd.darknedgy.net. Retrieved 26 October 2014.
  95. 1 2 "GSoC 2014: systemd replacement utilities (systembsd)". OpenBSD Journal. Retrieved 28 November 2014.
  96. Koegel, Eric (20 October 2014). "ConsoleKit2". Retrieved 7 March 2015.
  97. "loginkit/README". Retrieved 4 December 2014.

This article is issued from Wikipedia - version of the 11/18/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.