systemd

systemd
systemd startup on Fedora 17
Original author(s) Red Hat (Lennart Poettering, Kay Sievers, Harald Hoyer), Daniel Mack, Tom Gundersen and David Herrmann
Developer(s) Red Hat (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 239 (June 22, 2018 (2018-06-22)) [±][2]
Repository Edit this at Wikidata
Written in C
Operating system Linux
Type System software
Process supervisor
License GNU LGPL 2.1+[3]
Website freedesktop.org/.../systemd/

Systemd (stylized as systemd) is a suite of software that provides fundamental building blocks for a Linux operating system.[4] Among other features, it includes the systemd "System and Service Manager,"[5] an init system used to bootstrap the user space and to manage system processes after booting. It is a replacement for the UNIX System V and Berkeley Software Distribution (BSD) init systems and, as of 2015, the majority of Linux distributions have adopted systemd as their default init system.[6]


One of the main goals of the systemd project is unification of basic Linux configurations and service behaviors across all Linux distributions[7].

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]

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.[10]
Unified-hierarchy cgroups will be accessible exclusively by systemd through systemd-nspawn[11]

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 described systemd as unifying "pointless differences between distributions," by providing the following three general functions:[12]

  • A system and service manager (manages both the system, as 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 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.[13] 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 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.[14] 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[15] include:

  • service
  • socket
  • device
  • mount
  • automount
  • swap
  • target
  • path
  • timer (which can be used as a cron-like job scheduler[16])
  • snapshot
  • slice (used to group and manage processes and resources[17])
  • scope

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 may be used to introspect and control the state of the systemd system and service manager.
  • 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.[18] Since version 205, systemd also offers ControlGroupInterface, which is an API to the Linux kernel cgroups.[19] The Linux kernel cgroups are adapted to support kernfs,[20] and are being modified to support a unified hierarchy.[21]

Ancillary components

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

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.[22]
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[23] and replaces ConsoleKit, which is no longer maintained.[24] For X11 display managers the switch to logind requires a minimal amount of porting.[25] 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.[26][27][28][29][30] In July 2014, systemd version 215 was released, adding new features such as a DHCP server for IPv4 hosts, and VXLAN support.[31][32]
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.
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.[33] 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.[34][35]
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.

History

systemd-manager, a tool to configure systemd

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

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

Between October 2013 and February 2014, a long debate among the Debian Technical Committee occurred on the Debian mailing list,[38] 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[39][40] 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.[41][42]

In November 2014 Debian Developer Joey Hess,[43] Debian Technical Committee members Russ Allbery[44] and Ian Jackson,[45] and systemd package-maintainer Tollef Fog Heen[46] 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 August 2015 systemd started providing a login shell, callable via machinectl shell.[47]

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

Adoption

Linux distributionDate added to software repository[lower-alpha 1]Enabled by default?Date released as defaultRuns 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[52] Yes October 2012[53] Yes[54]
CentOS April 2014 Yes April 2014 (7.14.04) No
CoreOS July 2013 Yes October 2013 (v94.0.0)[55][56] No
Debian April 2012[57] Yes April 2015 (v8)[58] Yes[59]
Fedora November 2010 (v14)[60] Yes May 2011 (v15) No
Gentoo Linux[lower-alpha 2] July 2011[61][63][64] No N/A Yes
Knoppix N/A No [65][66] N/A Yes
Mageia January 2011 (v1.0)[67] Yes May 2012 (v2.0)[68] ?
Mint June 2016 (v18.0) Yes N/A Yes
openSUSE March 2011 (v11.4)[69] Yes September 2012 (v12.2)[70] No
Red Hat Enterprise Linux June 2014 (v7.0)[71] Yes June 2014 (v7.0) No
Slackware N/A (not in repository) No N/A Yes
Solus N/A Yes N/A No
SUSE Linux Enterprise Server October 2014 (v12) Yes October 2014 (v12) No
Ubuntu April 2013 (v13.04) Yes April 2015 (v15.04) Yes[72]
Void Linux June 2011, removed June 2015 [73] No N/A Yes

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 was developed to avoid systemd and has reached version 2.0 for stable usage.[74][75]

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

In November 2012, the GNOME Project concluded that basic GNOME functionality should not rely on systemd.[77] 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.[78] 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.[79][80]

GNOME has further integrated logind.[81] As of Mutter version 3.13.2, logind is a dependency for Wayland sessions.[82] 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.

Criticism

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 design principles of Unix-like operating systems. 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.[83]

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

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

In March 2014 Eric S. Raymond opined that systemd's design goals were prone to mission creep and software bloat.[86] 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.[87] In late April 2014 a campaign to boycott systemd was launched, with a website listing various reasons against its adoption.[88][89]

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

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.[91] On social media, Ts'o also later compared the attitudes of two key developers to that of GNOME's developers.[92]

On July 6, 2015, an issue was raised on the systemd Github page expressing concerns about the hard-coding of DNS servers in the systemd code. Systemd developer Lennart Poettering responded that it is not the actual DNS but rather the fallback DNS that is hard-coded. He added that the fallback DNS is only used if "...nobody configured anything..." and to prevent connectivity issues due to catastrophic failure of configuration files or a lack of DHCP on the network. As Poettering described, the system "...should do the right thing..." if, as an example, the /etc directory were missing or empty. Poettering also noted that the /etc/systemd/resolved.conf file installed with systemd contains exactly the same DNS servers as the fallback DNS thereby resulting in the same operation regardless of the /etc directory being empty or present.[93]

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

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

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.[97] Project development halted in January 2015.[98]

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

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.[100] Project development halted in July 2016.[101]

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

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

Development ceased in December 2017 and the project may be defunct.[103]

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

The project has been defunct since February 2015.[105]

notsystemd

Notsystemd intends to implement all Systemd's features working on any init system.[106] 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.[107]

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

References

  1. 1 2 "systemd README", freedesktop.org, retrieved 9 September 2012
  2. "[systemd-devel] [ANNOUNCE] systemd v239". freedesktop.org. 2018-06-22. Retrieved 2018-06-30.
  3. Poettering, Lennart (21 April 2012), systemd Status Update, retrieved 28 April 2012
  4. "systemd". Retrieved 14 February 2018.
  5. "Github systemd/systemd - systemd System and Service Manager". Retrieved 14 February 2018.
  6. Saunders, Mike (11 November 2015). "Linux 101: Get the most out of systemd". Linux Voice. Retrieved 28 January 2016.
  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. 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.
  11. "The New Control Group Interfaces". Freedesktop.org. 28 August 2015. Retrieved 6 February 2016.
  12. Poettering, Lennart (May 2014). "A Perspective for systemd: What Has Been Achieved, and What Lies Ahead" (PDF). Retrieved 30 November 2014.
  13. 1 2 Poettering, Lennart (26 January 2013). "The Biggest Myths".
  14. "Debate/initsystem/systemd – Debian Documentation". Debian. 2 January 2014. Retrieved 4 December 2014.
  15. "systemd.unit man page". freedesktop.org.
  16. "systemd Dreams Up New Feature, Makes It Like Cron". Phoronix. 28 January 2013. Retrieved 22 January 2014.
  17. "systemd.slice (5) - Linux Man Pages". Retrieved 2018-03-12. [...] a slice [...] is a concept for hierarchically managing resources of a group of processes.
  18. Edge, Jake (7 November 2013). "Creating containers with systemd-nspawn". LWN.net. Retrieved 30 July 2014.
  19. "ControlGroupInterface". freedesktop.org. Retrieved 9 November 2014.
  20. Heo, Tejun (28 January 2014). "cgroup: convert to kernfs". linux-kernel (Mailing list).
  21. Heo, Tejun (13 March 2014). "cgroup: prepare for the default unified hierarchy". linux-kernel (Mailing list).
  22. "systemd's binary logs and corruption". Retrieved 21 Jan 2016.
  23. "systemd-logind.service". freedesktop.org. Retrieved 17 February 2014.
  24. "ConsoleKit official website". freedesktop.org. Retrieved 9 November 2014.
  25. "How to hook up your favorite X11 display manager with systemd". freedesktop.org.
  26. "Networking in +systemd - 1. Background". 27 November 2013. Retrieved 22 February 2014.
  27. "Networking in +systemd - 2. libsystemd-rtnl". 27 November 2013. Retrieved 22 February 2014.
  28. "Networking in +systemd - 3. udev". 27 November 2013. Retrieved 22 February 2014.
  29. "Networking in +systemd - 4. networkd". 27 November 2013. Retrieved 22 February 2014.
  30. "Networking in +systemd - 5. the immediate future". 27 November 2013. Retrieved 22 February 2014.
  31. Larabel, Michael (4 July 2014). "systemd 215 Works On Factory Reset, DHCPv4 Server Support". Retrieved 8 November 2014.
  32. Šimerda, Pavel (3 February 2013). "Can Linux network configuration suck less?".
  33. "timedated". freedesktop.org. Retrieved 9 November 2014.
  34. Sievers, Kay. "The future of the udev source tree". linux-hotplug (Mailing list). Retrieved 22 May 2013.
  35. Sievers, Kay, "Commit importing udev into systemd", freedesktop.org, retrieved 25 May 2012
  36. 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.
  37. "F15 one page release notes", fedoraproject.org, 24 May 2001
  38. "#727708 - tech-ctte: Decide which init system to default to in Debian". 25 October 2013. Retrieved 14 September 2014.
  39. "Which init system for Debian?". 5 November 2013. Retrieved 14 September 2014.
  40. "Debian Still Debating systemd Vs. Upstart Init System". Phoronix. 30 December 2013. Retrieved 14 September 2014.
  41. "Losing graciously". 14 February 2014. Retrieved 14 September 2014.
  42. "Quantal, raring, saucy..." 18 October 2013. Retrieved 14 September 2014.
  43. Hess, Joey. "on leaving". Retrieved 15 July 2015.
  44. Allbery, Russ (16 November 2014). "Resigning from the Technical Committee". debian-ctte (Mailing list). Retrieved 15 July 2015.
  45. Jackson, Ian (19 November 2014). "Resignation". debian-ctte (Mailing list). Retrieved 15 July 2015.
  46. Heen, Tollef Fog (16 November 2014). "Resignation from the pkg-systemd maintainer team". pkg-systemd-maintainers (Mailing list). Retrieved 15 July 2015.
  47. 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.
  48. "Assertion failure when PID 1 receives a zero-length message over notify socket #4234". 28 September 2016.
  49. Felker, Rich (3 October 2016). "Hack Crashes Linux Distros with 48 Characters of Code". Kaspersky Lab.
  50. "CVE-2017-9445 Details", National Vulnerability Database, National Institute of Standards and Technology (U.S.), 2017-07-06, retrieved 2018-07-06
  51. "CVE-2017-9445", The Common Vulnerabilities and Exposures database, The Mitre Corporation, 2017-06-05, retrieved 2018-07-06
  52. "Git clone of the 'packages' repository". Web interface to the Arch Linux git repositories. 12 January 2012.
  53. "systemd is now the default on new installations". Arch Linux.
  54. "Migrate to OpenRC on ArchLinux".
  55. "coreos/manifest: Releases: v94.0.0". github.com. October 3, 2013. Retrieved September 22, 2014.
  56. "CoreOS's init system", coreos.com, archived from the original on 14 February 2014, retrieved 14 February 2014
  57. "systemd". debian.org. Retrieved 19 November 2014.
  58. Garbee, Bdale (11 February 2014). "Bug#727708: call for votes on default Linux init system for jessie". debian-ctte (Mailing list).
  59. "Installing without systemd". Retrieved 2018-04-03.
  60. "Fedora 14 talking points".
  61. 1 2 "systemd", wiki.gentoo.org, retrieved 26 August 2012
  62. "Installing the Gentoo Base System § Optional: Using systemd".
  63. "Comment #210 (bug #318365)", gentoo.org, retrieved 5 July 2011
  64. "systemd", gentoo.org, retrieved 5 July 2011
  65. "KNOPPIX 7.4.2 Release Notes". Archived from the original on January 6, 2018. Retrieved April 26, 2018. ...script-based KNOPPIX system start with sysvinit
  66. "KNOPPIX 8.0 Die Antwort auf Systemd (German)". Archived from the original on June 13, 2018. Retrieved June 13, 2018. ...Knoppix 'boot process is still running 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.)
  67. ChangeLog of Mageia's systemd package
  68. 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
  69. Directory view of the 11.4 i586 installation showing presence of the systemd v18 installables, 23 February 2011, retrieved 24 September 2013
  70. "OpenSUSE: Not Everyone Likes systemd". Phoronix. The recently released openSUSE 12.2 does migrate from SysVinit to systemd
  71. Red Hat Unveils Red Hat Enterprise Linux 7, 10 June 2014
  72. "Ubuntu Wiki: Switching init systems". Retrieved 3 July 2016.
  73. "Void-Package: systemd: removed; no plans to resurrect this".
  74. "Meet Devuan, the Debian fork born from a bitter systemd revolt".
  75. Sharwood, Simon (5 May 2017). "systemd-free Devuan Linux hits RC2". The Register. Retrieved 5 May 2017.
  76. Poettering, Lennart (18 May 2011). "systemd as an external dependency". desktop-devel (Mailing list). GNOME. Retrieved 26 May 2011.
  77. Peters, Frederic (4 November 2011). "20121104 meeting minutes". GNOME release-team (Mailing list). Retrieved 14 January 2013.
  78. "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!
  79. Vitters, Olav. "GNOME and logind+systemd thoughts". Retrieved 24 April 2014.
  80. "GNOME 3.10 arrives with experimental Wayland support". ZDNet. Retrieved 24 April 2014.
  81. "GNOME initiatives: systemd". Retrieved 9 May 2018.
  82. "Mutter 3.13.2: launcher: Replace mutter-launch with logind integration". 19 May 2014. Retrieved 28 May 2014.
  83. Vaughan-Nichols, Steven (19 September 2014). "Linus Torvalds and others on Linux's systemd". ZDNet. CBS Interactive.
  84. "Interview with Patrick Volkerding of Slackware". linuxquestions.org. 7 June 2012. Retrieved 19 March 2014.
  85. "I'm back after a break from Slackware: sharing thoughts and seeing whats new!". linuxquestions.org. Retrieved 14 March 2014.
  86. "Interviews: ESR Answers Your Questions". Slashdot.org. 10 March 2014. Retrieved 19 March 2014.
  87. Torvalds, Linus (2 April 2014). "Re: [RFC PATCH] cmdline: Hide "debug" from /proc/cmdline". linux-kernel (Mailing list). Retrieved 8 July 2014.
  88. "Is systemd as bad as boycott systemd is trying to make it?". LinuxToday. Retrieved 22 September 2014.
  89. "Boycott systemd.org". Archived from the original on 6 May 2014. Retrieved 15 July 2015.
  90. 1 2 Venezia, Paul (18 August 2014). "systemd: Harbinger of the Linux apocalypse". Retrieved 20 September 2014.
  91. "Linus Torvalds and others on Linux's systemd". Retrieved 21 November 2014.
  92. "A realization that I recently came to while discussing the whole systemd..." 31 March 2014. Retrieved 8 July 2014.
  93. ""FallbackDNS shouldn't have values set at compile time"". June 6, 2015. Retrieved 3 June 2018.
  94. "eudev/README". Archived from the original on 16 February 2015. Retrieved 1 June 2015.
  95. "Gentoo eudev project". Retrieved 1 June 2015.
  96. "elogind/README". Retrieved 2 September 2015.
  97. Larabel, Michael (21 September 2014). "Uselessd: A Stripped Down Version Of systemd". Phoronix. Retrieved 26 October 2014.
  98. "Uselessd is dead". Uselessd website. Retrieved February 17, 2017.
  99. "uselessd :: information system". uselessd.darknedgy.net. Retrieved 26 October 2014.
  100. 1 2 "GSoC 2014: systemd replacement utilities (systembsd)". OpenBSD Journal. Retrieved 28 November 2014.
  101. projects / systembsd.git / summary, retrieved 8 July 2018
  102. Koegel, Eric (20 October 2014). "ConsoleKit2". Retrieved 7 March 2015.
  103. "ConsoleKit2 (Github)". Retrieved July 8, 2018.
  104. "loginkit/README". Retrieved 4 December 2014.
  105. "dimkr/LoginKit (Github)". Retrieved July 8, 2018.
  106. Luke Shumaker (June 17, 2017). "notsystemd v232.1 release announcement". Dev@lists.parabola.nu (Mailing list).
  107. "Notsystemd project". notsystemd.megver83.ga. Retrieved 6 August 2017. Notsystemd was born when some of the Parabola GNU/Linux-libre developers wanted libretools to work without Systemd, as it uses systemd-nspawn to get into chroots and compile packages.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.