Fact-checked by Grok 2 weeks ago

init

In operating systems, init (short for "initialization") is the first userspace launched by the during boot, assigned process ID () 1, and serving as the ancestor of all subsequent processes. It reads configuration from files such as /etc/inittab to spawn , manage system runlevels, and handle events like power failures or process terminations. Originating in early Unix implementations from in the 1970s, init evolved into the standardized System V (SysV) init in UNIX during the , which introduced —a mechanism to transition the system through operational states from (runlevel 1) to full multi-user graphical environments (typically runlevels 2–5). This SysV model, relying on sequential scripts in /etc/init.d/ for service management, became the foundation for distributions but faced limitations in handling parallel startups, dependency resolution, and dynamic hardware like USB devices. By the mid-2000s, alternatives emerged to address these shortcomings: Upstart (introduced around 2006 by ) adopted an event-driven approach for better parallelism, powering from version 6.10 and 9–14. In 2010, was developed by and Kay Sievers at , emphasizing socket activation, on-demand service loading, and integrated logging via Journald; it gained widespread adoption starting with 7 (2014) and 8 (2015), and by 2025 serves as the default init system in most major distributions due to its efficiency in modern, containerized, and cloud environments. Other variants, such as and , persist in lightweight or embedded systems for their simplicity and modularity. Key functions of init across implementations include re-executing itself for upgrades (via signals like SIGUSR2 in SysV), supervising child processes to prevent boot hangs, and facilitating shutdown or reboot by sending termination signals (SIGTERM followed by SIGKILL) to undefined processes during changes. In contemporary , these are extended with for resource control, integration for , and replacing traditional runlevels for more flexible .

Fundamentals

Role and Responsibilities

In operating systems, the process is the first user-space program executed by the after the boot sequence completes, assigned process ID 1 ( 1) to mark its foundational status. This initiation occurs when the invokes an executable such as /sbin/init via the execve , establishing the bridge between kernel-mode operations and user-space execution. As 1, init assumes the role of the ultimate ancestor for all subsequent processes, directly or indirectly forking them into existence and serving as their adoptive parent when original parents terminate. This hierarchical structure ensures that every daemon, , and user session traces its lineage back to init, maintaining process tree integrity across the system. The primary responsibilities of init encompass critical system lifecycle management. It reaps orphaned child processes—those left in a state after their parent exits without invoking wait—by periodically calling system calls like waitpid to collect their exit statuses and free associated resources, preventing memory leaks and process table exhaustion. Additionally, init oversees the startup of essential system services, such as mounting filesystems and launching background daemons, while facilitating the transition from single-user kernel-controlled mode to a fully operational multi-user . During shutdown or , init coordinates the graceful termination of services, unmounting filesystems, and signaling the to halt or restart hardware, ensuring and orderly power-off. Failure of the init process carries severe implications, as it is irreplaceable in the hierarchy. If init cannot be launched—due to a missing or corrupted binary specified by kernel parameters like init=—the process stalls, often resulting in a with messages indicating no working init was found, leading to an unrecoverable system hang. Similarly, if the running init ( 1) terminates unexpectedly, the detects the attempt to kill it and triggers a panic, syncing filesystems if possible before halting, as no alternative process can adopt orphans or manage services; recovery requires manual hardware intervention, such as resetting the system. This design underscores init's indispensable nature, where its absence equates to total system failure without built-in mechanisms.

Boot Integration

The boot process of a system culminates in the handing off control to the init process after completing its initialization tasks. Following hardware detection, memory setup, and mounting the root filesystem—often facilitated by an initial RAM filesystem (initramfs)—the executes the program specified by the init= command-line parameter, typically /sbin/init. This execution creates the first user-space process with process ID 1 (PID 1), marking the transition from mode to user mode and establishing the foundation for all subsequent user-space activities. Upon startup, init begins in a minimal , inheriting a sparse set of environment variables from the , such as those derived from command-line parameters up to the -- . Its initial actions include parsing configuration files to determine system setup, forking and executing essential background processes (daemons), mounting additional filesystems beyond the , and configuring system-wide environment variables to prepare the runtime context. These steps ensure the operating system progresses from a bare state to a functional user , with init overseeing the launch of core services like those for and networking, though detailed service management occurs later in the sequence. A key role of init in process lifecycle management is serving as the adoptive parent for orphaned processes—those whose original parent has terminated without reaping them. When a process becomes orphaned, the kernel reassigns its parent to PID 1, and init periodically invokes the wait() system call to detect and reap any resulting zombie (defunct) children, thereby freeing their process table entries and preventing resource leaks. This mechanism maintains system hygiene by automatically cleaning up terminated processes that would otherwise accumulate. Unlike typical user processes, init operates under special protections to safeguard system stability: it ignores the SIGKILL signal, rendering attempts to terminate it via kill -9 ineffective, as the kernel ensures PID 1 only responds to signals for which it has installed explicit handlers. Additionally, init launches with root privileges but without a controlling terminal, running in a non-interactive context that emphasizes its role as the root ancestor of all processes rather than an interactive application.

BSD-Style Init

Origins and Evolution

The BSD-style init system traces its roots to the operating system developed at during the 1970s, where the init process emerged as the first user-space program ( 1) responsible for launching essential to initialize the system environment. This foundational design first appeared in , released in 1975, as a straightforward launcher that forked processes like getty for management and executed basic startup routines without complex tracking. The approach emphasized minimalism, allowing init to respawn failed processes and transition the system from kernel boot to a functional multi-user through simple scripting. Key evolutionary milestones refined this model within the Berkeley Software Distribution (BSD) lineage. In 4.1BSD, released in June 1981, the /etc/ script was formalized as a central, monolithic executed by init to handle system configuration tasks, such as mounting file systems from , configuring terminals via /etc/ttys, and activating swap space with swapon. This structure provided a reliable, sequential sequence that prioritized deterministic execution over parallelization, enabling site-specific customizations through an accompanying /etc/rc.local file. By 4.3BSD in 1986, enhancements to init supported emerging windowing systems, permitting the spawning of arbitrary programs beyond traditional getty processes and introducing a dedicated window field in configuration files to initialize graphical terminals and display managers. A significant advancement occurred in 1.5, released in December 2000, which replaced the monolithic /etc/rc with a modular /etc/rc.d directory containing individual scripts for each service, each annotated with dependency keywords like PROVIDE, REQUIRE, and BEFORE. The rcorder utility then dynamically ordered and executed these scripts during startup, introducing dependency-aware sequencing while preserving the core sequential philosophy and avoiding abstractions seen in System V init. At its core, the BSD-style init embodies a design philosophy of sequential, non-state-based startup that favors reliability and simplicity, eschewing intricate state machines or in favor of predictable, linear execution to minimize failure points and ensure robust system bootstrapping. This emphasis on straightforward scripting and fault-tolerant respawning has sustained its adoption as the default init system in contemporary BSD derivatives, including , , and , where it continues to drive boot processes with minimal overhead. Its influence extends to select Linux distributions, notably , which employs a BSD-style initialization layout with /etc/rc.d scripts and a single-runlevel model for enhanced maintainability.

Boot Sequence and Configuration

In the BSD-style init system, the boot sequence begins after the kernel loads the root filesystem and executes init(8) as the first user process with process ID 1. Init then invokes the /etc/rc script serially to perform system initialization, sourcing configuration from /etc/rc.conf to set parameters such as the local hostname, network interface details, and flags for enabling services like daemons and networking. The /etc/rc script uses the rcorder(8) utility to determine the execution order of modular scripts in /etc/rc.d based on their declared dependencies, ensuring sequential startup of essential components such as network configuration and daemon processes. Key configuration files guide this process, with /etc/ttys defining terminal lines for login sessions by specifying devices and getty(8) types. During multi-user , init forks instances of getty based on active entries in /etc/ttys, enabling user logins on physical serial ports and virtual consoles (e.g., ttyv0 through ttyv9 for console switching via Ctrl+Alt+F1–F10). Meanwhile, /etc/rc.d houses independent for services, each supporting standard actions like start, stop, and restart via a unified , along with keywords such as REQUIRE: networking or PROVIDE: foo to enforce ordering— for instance, a script might require networking to be available before attempting to bind a network daemon. The shutdown process mirrors this structure for orderly termination. When shutdown(8) or reboot(8) is invoked, init executes /etc/rc.shutdown, which sources /etc/rc.subr for utility functions and runs the /etc/rc.d scripts in reverse order using rcorder(8), allowing services to stop gracefully (e.g., closing connections and saving ) before unmounting filesystems and halting the .

System V Init

Core Components

The System V init system originated in AT&T's UNIX System III release in 1981, where the /etc/inittab file was introduced to configure the process, and it was further standardized in System V Release 3 in 1987 with /sbin/init serving as the core executable responsible for system initialization and process management. As the first user-space process started by the (process ID 1), /sbin/init reads the /etc/inittab configuration file upon startup to determine and spawn essential system processes. The /etc/inittab file is structured as a series of colon-separated entries in the format id:runlevels:action:[process](/page/Process), where each line defines a to manage. The id field provides a unique 1-4 character identifier for the entry; the runlevels field specifies the system states (numeric or letter codes) in which the should run; the action field dictates how init handles the (e.g., respawn to automatically restart upon termination, or wait to execute once and monitor completion); and the process field contains the command or script to execute. This tabular configuration allows init to systematically control daemon and service lifecycles without embedding logic directly in the init binary. Upon reading /etc/inittab, init forks child processes for each applicable entry, such as multiple instances of the getty program for virtual terminals, ensuring they run in the appropriate contexts. If a respawn-actioned process terminates unexpectedly—due to a crash or signal—init detects the exit via the wait status and immediately forks a replacement, providing automatic recovery for critical services like daemons. This forking mechanism, combined with signal handling, enables init to maintain system stability by treating itself as the ultimate parent for orphaned processes. System V init supports various action types to handle diverse events beyond standard spawning, including boot for processes executed early in initialization (ignoring runlevels), bootwait for boot-time commands where init waits for completion, off to disable an entry, once for one-time execution upon entering a runlevel, and powerfail for signaling power-related events without waiting. These actions facilitate event-driven responses, such as invoking scripts during power failures detected via signals. In contrast to the BSD-style init's reliance on sequential scripts for process orchestration, System V init's inittab-driven approach emphasizes declarative configuration for parallel and resilient process management.

Runlevels

In System V init, runlevels define distinct operational modes that determine the set of services and processes running on the system, enabling controlled transitions between states such as , multi-user , or shutdown. These modes, numbered from 0 to 6 with an additional special runlevel , provide a standardized way to manage system behavior without requiring a full , allowing administrators to tailor the environment to specific needs like diagnostics or resource optimization. The standard runlevels, as specified in the (LSB), are as follows:
RunlevelPurpose
0Halt the system
1
2Multi-user mode without network services exported
3Full multi-user mode
4Reserved for local use; defaults to full multi-user mode
5Multi-user mode with display manager or equivalent
6Reboot the system
S (equivalent to 1 but used during for initial setup)
Runlevel transitions are initiated using the telinit command, which sends a signal to the process to switch states by terminating processes associated with the current and launching those defined for the target , typically via scripts in /etc/rcN.d/ directories (where N is the number). This process ensures orderly changes, preserving system stability during mode shifts. The /etc/inittab file integrates with by specifying the default level and respawning critical processes as needed within each mode. The system offers advantages in flexibility and safety, permitting seamless switches—for instance, from full multi-user mode ( 3) to ( 1) for recovery tasks—while minimizing downtime and manual intervention across diverse administrative scenarios.

Scripts and Defaults

In System V init, service startup and shutdown are managed through shell scripts stored in the /etc/init.d/ directory. These scripts are not executed directly; instead, the init process uses symbolic links in -specific subdirectories, such as /etc/rc3.d/ for 3, to invoke them in the appropriate order during transitions. The links follow a standardized : files prefixed with S## (where ## is a two-digit number) indicate startup actions and are called with the start argument, while those prefixed with K## denote shutdown actions and receive the stop argument; the numeric suffix determines the sequence, with lower values executing first to respect dependencies. Default runlevels, which define the initial system state after boot, vary across operating systems implementing System V init. Many distributions default to 3 for multiuser mode with console access or 5 for graphical environments, while others prioritize non-graphical setups. The following table provides representative examples:
Operating System/DistributionDefault RunlevelDescription
5Multiuser mode with graphical login enabled
3Multiuser mode with networking and NFS support
AIX2Multiuser mode without additional customization
Gentoo3Standard multiuser mode in OpenRC-based setups
(pre-systemd releases)2Multiuser mode without display manager
Customization of System V init involves modifying the /etc/inittab file to set the default via the id:runlevel:initdefault: entry, which specifies the target state on . Administrators can also extend functionality by placing scripts in /etc/init.d/—ensuring they support standard arguments like start, stop, restart, and status—and creating symlinks in the desired /etc/rcX.d/ directories to integrate them into specific runlevels. A key limitation of this script-based system is its reliance on serial execution, where services are started or stopped sequentially according to symlink order, often resulting in extended boot times as each script completes before the next begins, without inherent support for parallelization.

Modern Init Systems

is a system and service manager for operating systems, serving as 1 and responsible for initializing the system and managing services. Developed by and Kay Sievers at , it was first introduced in 2010 to address limitations in traditional init systems like SysVinit, such as serial service startup and lack of . The project aimed to leverage modern features for improved efficiency and portability across distributions. 15, released in May 2011, became the first major distribution to adopt as the default init system. Adoption accelerated in the mid-2010s, with switching to in version 8 (Jessie) in April 2015. followed suit in 15.04 (Vivid Vervet), released in April 2015, replacing its previous Upstart init. By 2025, has become the standard init system in nearly all major distributions, including , , and , replacing SysVinit and Upstart in server and desktop environments. Key innovations in include parallel service startup, which allows independent services to activate concurrently rather than sequentially, leading to significantly faster boot times compared to SysVinit's serial approach. It employs dependency-based unit activation, where services start only after their prerequisites are met, managed through a that resolves conflicts before execution. and activation enable on-demand service launching: services remain inactive until a socket connection or D-Bus message triggers them, reducing resource usage and improving responsiveness. Systemd organizes resources into units, configurable via declarative files typically located in /lib/systemd/system/ or /etc/systemd/system/. Service units (.service files) define how daemons like web servers or are executed, including options for restarts, variables, and resource limits. , analogous to SysV runlevels, group units for synchronization; for example, multi-user.target enables a non-graphical multi-user , while graphical.target adds a display manager. The systemctl command provides a unified interface for managing units, such as starting, stopping, enabling, or querying status. Advantages of systemd include integrated logging via journald, a binary journal that captures structured logs with timestamps, priorities, and metadata, viewable through journalctl for efficient querying and rotation. Security features leverage and for sandboxing: directives like PrivateTmp=yes isolate temporary files, ProtectSystem=strict read-only mounts the filesystem, and NoNewPrivileges=yes prevents , enhancing service isolation. These capabilities have facilitated better container integration, allowing systemd to manage or Podman containers as native units, with socket activation for seamless networking. Despite its widespread use, has faced criticisms for its complexity and , as it encompasses not only init but also , networking, and device management, leading to a monolithic design that some argue complicates debugging and increases the . Detractors contend that this breadth violates Unix principles of , making it harder for non-Linux ports and contributing to heated debates within the community since its inception.

Other Alternatives

Upstart, developed by and introduced in 2006 for , represents an early event-based init system aimed at replacing the sequential limitations of System V init. It manages services through job definitions in /etc/init/, where administrators specify "start on" and "stop on" conditions tied to system events, such as network availability or hardware changes, enabling more responsive and parallel-like service orchestration. This approach bridged traditional SysV scripting with modern requirements for faster boots and dependency awareness, but Upstart was deprecated in 15.04 (2015) due to the broader adoption of for its superior feature set and ecosystem integration. Launchd, created by Apple and first deployed in Mac OS X 10.4 Tiger (2005), functions as the primary init and service management daemon on macOS, supplanting the legacy BSD-style init for more efficient system startup. Configurations are defined in XML-based (plist) files located in directories like /Library/LaunchDaemons/ for system-wide daemons and ~/Library/LaunchAgents/ for user-specific agents, allowing on-demand launching based on triggers such as login or resource availability. uniquely integrates with XPC services for secure and handles events, like sleep/wake transitions, to coordinate service states across the system's lifecycle. OpenRC, initiated in 2007 by Roy Marples for and later adopted by , offers a lightweight, dependency-aware evolution of SysV init while preserving compatibility through /etc/init.d/ shell scripts. It resolves traditional serial boot delays by supporting parallel execution of independent services via explicit dependency declarations in script metadata, resulting in faster initialization without the overhead of more comprehensive suites. 's script-based design emphasizes portability and minimalism, making it suitable for both and environments in distributions prioritizing simplicity. Among supervision-oriented alternatives, provides a minimalist with built-in , enabling parallel service startups and automatic restarts for reliability, as implemented in where it serves as the default PID 1 for boot, runtime, and shutdown phases. Similarly, s6 from skarnet.org delivers a compact suite for secure service oversight, featuring tools like s6-supervise for daemon monitoring and s6-rc for dependency-based management, which collectively minimize privileges and attack surfaces compared to monolithic systems. , written in , acts as a extensible service shepherd for the GNU/Hurd kernel, dynamically managing daemons through declarative configurations and offering a (herd) for one-stop service control. Other notable systems include Epoch Init, a single-threaded, dependency-lightweight option for kernels 2.6 and later, relying on simple priority-based ordering in declarative configs to avoid complex graphs while maintaining core boot functionality with minimal footprint. Dinit, implemented in portable C++, functions as both a cross-platform init and daemon supervisor on systems, incorporating dependency resolution and event-driven starts to facilitate service orchestration without platform-specific ties. For embedded applications, employs init as PID 1, which parses /etc/inittab to invoke scripts, optimizing for low-resource devices through 's multi-tool binary that consolidates utilities into a single executable. These alternatives collectively tackle SysV init's inherent seriality by introducing parallelism, event reactivity, or focused supervision, fostering quicker boots and resilient service handling tailored to specific ecosystems—from macOS's integrated desktop needs to lightweight embedded deployments—though their adoption remains concentrated in targeted distributions rather than widespread dominance.

References

  1. [1]
    init(8) — sysvinit-core - Debian Manpages
    init is the parent of all processes. Its primary role is to create processes from a script stored in the file /etc/inittab.
  2. [2]
    Initializing and Managing Services in Linux: Past, Present and Future
    May 20, 2015 · In this article, I focus on the history of the init system as it relates to Linux, and I talk about the role of init in a modern Linux system.
  3. [3]
    The init Process - Linux Device Drivers, Second Edition - O'Reilly
    As with any execve call in Unix, this one replaces the memory maps of the current process with new memory maps defined by the binary file ... Become an O ...
  4. [4]
    init(8): Upstart process management daemon - Linux man page
    init is the parent of all processes on the system, it is executed by the kernel and is responsible for starting all other processes.Missing: Unix | Show results with:Unix
  5. [5]
    The kernel’s command-line parameters — The Linux Kernel documentation
    Below is a merged response summarizing all the information from the provided segments on "Init Failure or PID 1 Death Consequences." To retain as much detail as possible in a dense and structured format, I’ve used tables in CSV-like format where applicable, alongside narrative text for context and additional details. The response includes all relevant parameters, descriptions, implications, consequences, and useful URLs from the summaries.
  6. [6]
    Kernel panic - not syncing: Attempted to kill init!
    Aug 5, 2024 · Kernel panic - not syncing: Attempted to kill init! Pid: 1, comm: init Not tainted 2.6.32-504.12.2.el6.x86_64 #1 Call Trace: ...
  7. [7]
    The kernel's command-line parameters
    Everything after “ -- ” is passed as an argument to init. Module parameters can be specified in two ways: via the kernel command line with a module name prefix, ...
  8. [8]
    kill(2) - Linux manual page - man7.org
    If pid equals 0, then sig is sent to every process in the process group of the calling process. If pid equals -1, then sig is sent to every process for which ...
  9. [9]
    The UNIX System -- History and Timeline - UNIX.org
    1975, Sixth Edition, UNIX leaves home. Also widely known as Version 6, this is the first to be widely available out side of Bell Labs. The first BSD version (1.Missing: init | Show results with:init
  10. [10]
    A History of UNIX before Berkeley: UNIX® Evolution, 1975-1984
    This article traces UNIX's history from the mid-1970s to early 1980s, focusing on 'Research UNIX' (V6, V7, V8) and the evolution of different variants.Missing: origins | Show results with:origins
  11. [11]
    [PDF] Unix ProgralIllIler's Manual - Bitsavers.org
    Sep 22, 1983 · This document contains instructions for the installation and operation of the 4.2BSD release of the VAX· UNIX·· system, as distributed by U. C..
  12. [12]
    [PDF] Bug Fixes and Changes in 4.3BSD April 15, 1986
    Apr 15, 1986 · The new format permits arbitrary programs, not just /etc/getty, to be spawned by init. A special window field can be used to set up a win- dow ...
  13. [13]
  14. [14]
    NetBSD 1.5 Release Announcement
    Conversion of the rc(8) system startup and shutdown scripts to an `rc.d' mechanism, with separate control scripts for each service, and appropriate ...Missing: 2000 | Show results with:2000
  15. [15]
    Modern *BSDs have a much better init system than I was expecting
    Jun 22, 2015 · The *BSDs have introduced a much better system called rc.d. The rc.d system is basically a lightweight version of System V init; it strips out all of the ...
  16. [16]
    System Init - The Slackware Linux Project: Configuration Help
    Slackware Linux uses the BSD-style file layout for its system initialization files. These files are organized and easy to edit.
  17. [17]
    init - FreeBSD Manual Pages
    The init utility is the last stage of the boot process. It normally runs the automatic reboot sequence as described in rc(8), and if this succeeds, begins ...DESCRIPTION · KERNEL ENVIRONMENT... · DIAGNOSTICS
  18. [18]
    rc.conf - FreeBSD Manual Pages
    The file rc.conf contains descriptive information about the local host name, configuration details for any potential network interfaces and which services ...Missing: sequence | Show results with:sequence
  19. [19]
    Practical rc.d scripting in BSD | FreeBSD Documentation Portal
    A guide to writing new rc.d scripts and understanding those already written.
  20. [20]
    ttys - FreeBSD Manual Pages
    The file ttys contains information that is used by various routines to initialize and control the use of terminal special files.
  21. [21]
  22. [22]
    FGA: /etc/inittab is a thing of the past. - Are you looking for something ?
    There are only two system management subsystems that have ever supported /etc/inittab : AT&T Unix System 3 init which originated the idea (including under this ...Missing: SVR3 | Show results with:SVR3
  23. [23]
    Unix SYSVr3 - Computer History Wiki
    Oct 21, 2023 · Unix SYSVr3, released in 1987, included STREAMS, TLI network API, RFS, FSS, and an ID subsystem. The final version was 3.2 in 1988.
  24. [24]
    inittab(5) — sysvinit-core — Debian testing
    The inittab file describes which processes are started at bootup and during normal operation (eg /etc/init.d/boot, /etc/init.d/rc, gettys...).Missing: components | Show results with:components
  25. [25]
    22.5. Run Levels
    The following run levels are specified for use by the Default-Start and Default-Stop actions defined in Comment Conventions for Init Scripts as hints to the ...
  26. [26]
    Linux Init and Telinit Commands - Computer Hope
    Jun 1, 2025 · init is the parent of all processes. Its primary role is to create processes from a script stored in the file /etc/inittab.Changing Runlevels · Telinit · Init Bootflags
  27. [27]
    telinit(8): change system runlevel - Linux man page - Die.net
    `telinit` changes the system runlevel using `RUNLEVEL` argument, which can be 2-5 for multi-user, 0 to halt, 6 to reboot, or 1 for single-user mode. `S` or `s` ...Missing: explanation | Show results with:explanation
  28. [28]
    1.4. SysV Init Runlevels | Reference Guide | Red Hat Enterprise Linux
    The SysV init runlevel system provides a standard process for controlling which programs init launches or halts when initializing a runlevel.
  29. [29]
    9.6. System V Bootscript Usage and Configuration
    During shutdown, the init program sends a TERM signal to each program it has started (e.g. agetty), waits for a set time (default 3 seconds), and sends each ...
  30. [30]
    F.4. SysV Init Runlevels | Installation Guide | Red Hat Enterprise Linux
    The SysV init runlevel system provides a standard process for controlling which programs init launches or halts when initializing a runlevel.
  31. [31]
    Run Levels - Oracle Solaris Administration
    A run level defines what services and resources are available. Solaris has eight run levels, with the default being 3. A system can only be in one at a time.
  32. [32]
    System run level - IBM
    The system run level specifies the system state and defines which processes are started. It is read from /etc/inittab and can be changed with the init command.
  33. [33]
    Handbook:Parts/Working/Initscripts - Gentoo Wiki
    Mar 11, 2025 · In Gentoo, there are seven runlevels defined: three internal runlevels, and four user-defined runlevels. The internal runlevels are called ...Runlevels · Updating runlevels · Configuring services · Writing initscripts
  34. [34]
    Check & Change Default Runlevel in Ubuntu - LinuxConfig
    May 29, 2024 · How to Check and Change the Default Runlevel on Ubuntu Linux. Runlevels are a legacy from UNIX System V, which define the state of a Unix-based ...
  35. [35]
    System V Overview - Init | Linux Journey - LabEx
    In a systemv environment, the machine's state is defined by runlevels, numbered from 0 to 6. These modes can vary slightly between Linux distributions, but they ...<|control11|><|separator|>
  36. [36]
    Poettering: Why systemd? - LWN.net
    Apr 29, 2011 · Choosing systemd means redefining more closely what the Linux platform is about. This improves the lifes of programmers, users and ...<|control11|><|separator|>
  37. [37]
    Why systemd?
    Apr 28, 2011 · The first big distribution with systemd by default will be Fedora 15, due end of May. It is expected that the others will follow the lead a ...<|control11|><|separator|>
  38. [38]
    Features/systemd - Fedora Project Wiki
    Oct 19, 2010 · Fedora 15 has replaced Upstart with systemd. systemd uses services files located in /lib/systemd/system for services, and /etc/systemd ...
  39. [39]
    systemd - Debian Wiki
    Jan 19, 2025 · Systemd is a system and service manager for Linux, the default init system for Debian since Debian 8, and is compatible with SysV and LSB init ...
  40. [40]
    Ubuntu 15.04 (Vivid Vervet) released
    Apr 23, 2015 · ... switch from upstart to systemd as the default for managing boot and system service startup. Ubuntu Desktop has seen incremental improvements ...
  41. [41]
    Chapter 11. Managing systemd | Red Hat Enterprise Linux | 8
    Key features of systemd include: Parallel start of system services during boot; On-demand activation of daemons; Dependency-based service control logic. The ...Missing: sandboxing | Show results with:sandboxing
  42. [42]
    systemd - Freedesktop.org
    When run as first process on boot (as PID 1), it acts as init system that brings up and maintains userspace services. Separate instances are started for ...Missing: responsibilities | Show results with:responsibilities
  43. [43]
    systemd - ArchWiki
    Targets. systemd uses targets to group units together via dependencies and as standardized synchronization points. They serve a similar purpose as runlevels ...systemd/User · Systemd-boot · Systemd-networkd · systemd/Journal
  44. [44]
    systemd.unit - Freedesktop.org
    The unit is a special "perpetual" unit that is always active and loaded. Examples for perpetual units are the root mount unit -.mount or the scope unit init.Missing: responsibilities | Show results with:responsibilities
  45. [45]
    systemd.target - Freedesktop.org
    Target units are used to group units and to set synchronization points for ordering dependencies with other unit files. This unit type has no specific options.Missing: key | Show results with:key
  46. [46]
    systemd.exec - Freedesktop.org
    Each executed process is now PID 1 - the init process - in the new namespace. /proc/ is mounted such that only processes in the PID namespace are visible.Missing: responsibilities | Show results with:responsibilities
  47. [47]
    Chapter 4. Running Containers as systemd Services with Podman
    This chapter describes how you can use the systemd initialization service to work with containers in two different ways.
  48. [48]
    Systemd as tragedy - LWN.net
    Jan 28, 2019 · Systemd is seen as a tragedy due to its disruptive, externally imposed change, and the resulting acrimony and resistance from some groups.
  49. [49]
    ReplacementInit - Ubuntu Wiki
    Jun 23, 2006 · Replace the init daemon from the sysvinit package with a modern event-based system that is better able to guarantee a robust boot process and ...
  50. [50]
    Upstart Intro, Cookbook and Best Practises - The Chromium Projects
    Upstart is an event-based replacement for the /sbin/init daemon which handles starting of tasks and services during boot, stopping them during shutdown and ...
  51. [51]
    Ubuntu Ditches Upstart | Linux Journal
    Apr 30, 2015 · The real difference is "under the skin", as Ubuntu switches from the Upstart init system to systemd.Missing: features deprecated
  52. [52]
    Creating Launch Daemons and Agents - Apple Developer
    Sep 13, 2016 · The launchd Startup Process​​ After the system is booted and the kernel is running, launchd is run to finish the system initialization. As part ...
  53. [53]
    launchd - Mac OS X Tiger in a Nutshell [Book] - O'Reilly
    Introduced with Mac OS X Tiger (10.4), launchd is an automated process launcher, starting and stopping processes as needed. It's intended as a catch-all ...
  54. [54]
    OpenRC - Gentoo Wiki
    To switch between "default" runlevel and "office" runlevel without rebooting the computer, change to "nonetwork" runlevel in between. The network interfaces ...Installation · Configuration · Usage · System integration
  55. [55]
    OpenRC - Alpine Linux Wiki
    Alpine Linux uses OpenRC for its init system. The init system manages the services, including the boot and shutdown of your system. OpenRC also supports ...
  56. [56]
    Systemd, SysVinit, runit, and OpenRC: A Brief Overview and the ...
    Aug 13, 2024 · OpenRC is an init system that originated in the Gentoo Linux community. It was designed to be a lightweight and more flexible alternative to ...
  57. [57]
    runit - a UNIX init scheme with service supervision - [smarden]
    runit is a cross-platform Unix init scheme with service supervision, a replacement for sysvinit, and other init schemes. It runs on GNU/Linux, *BSD, MacOSX, ...
  58. [58]
    Void Linux
    We use runit as the init system and service supervisor. runit is a simple and effective approach to initialize the system with reliable service supervision.Download · Services and Daemons - runit · Packages · News
  59. [59]
    s6 - skarnet's small supervision suite
    s6 is a small suite of programs for UNIX, designed to allow process supervision (aka service supervision), in the line of daemontools and runit.Missing: features | Show results with:features
  60. [60]
    The GNU Shepherd
    The Shepherd is a service manager written in Guile Scheme that looks after the herd of daemons running on the system. It can be used as an “init” system ...
  61. [61]
    The Epoch Init System: A new beginning
    The Epoch Init System is a small but powerful init system for Linux 2.6+. It requires a libc, (not glibc specific), a Linux kernel of 2.6 or greater, a shell ...
  62. [62]
    Dinit — service manager, init system - Davmac.org
    written in portable C++ code ...Missing: cross- daemon
  63. [63]
    BusyBox - Alpine Linux Wiki
    Busybox init is the first process(pid 1) started during boot. It never exits. It executes OpenRC runlevel scripts according to entries in /etc/inittab. Shutdown ...Missing: embedded | Show results with:embedded
  64. [64]
  65. [65]
    Linux Startup Managers: A Comprehensive Guide to Init Systems
    May 27, 2025 · A startup manager, also known as an init system, is the parent process (PID 1) that manages all other processes on a Linux system.Missing: BSD | Show results with:BSD