I use plasma, BTW

    • cally [he/they]@pawb.social
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year ago

      • systemd is an init system commonly used in distros like Linux Mint, Arch, Manjaro, Ubuntu, Debian, etc.

      • init systems have a process id of 1 and manage services like a login manager, network, firewall service, etc.

      • a process id is assigned to every process in a linux system.

      the average user usually doesn’t worry about the init system, although more experienced/techy users may care about it.

        • dan@upvote.au
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          1 year ago

          Or, asked another way, does systemd load the Linux kernel, and if not, what does?

          Immediately after the BIOS/POST, the first thing that starts is the boot loader. This is usually a piece of software called GRUB. There’s a part of GRUB in the Master Boot Record on the drive, that the loads the rest of GRUB from /boot. /boot has to be a basic partition so that the MBR code can mount it, so for example if you use something a bit fancier (like LVM) then you’ll usually have a separate small ext2 or FAT partition just for /boot.

          GRUB shows a list of available kernels, and other operating systems (if any are installed), based on a config in /boot.

          Once you select a kernel to boot (or wait a few seconds for it to automatically choose the default option), it starts loading the kernel. There is a small disk image called the “initial ramdisk” in /boot, usually with a name like initrd or initramfs. This is a small ramdisk that contains all the drivers needed to mount your root partition - for example, drive drivers (NVMe, SATA, etc), file system drivers (ext4, ZFS, XFS, etc), LVM, RAID drivers if needed, and so on. If the root disk is on an NFS network share (not as common any more, but still doable), it also needs to contain network drivers for your network card. It also contains a few basic utilities, usually provided by BusyBox.

          Some Linux distros (such as Debian) build a custom initramfs, whereas others (like Fedora) have a generic one containing all possible drivers.

          The initial ramdisk then mounts the root partition and hands control over to the Linux kernel, which starts actually booting the OS. The very first process the kernel starts running is the init process, which these days is usually systemd but can be a different one like sysvinit or runit.

          Hope that helps :)