I am a Linux user, but I don’t really know how most things work, even after years of casual use on my Main, I just started getting into Devuan and wondered then, what exacly does systemd do that most distros have it? What even is init freedom? And why should I care?

  • @lloram239@feddit.de
    link
    fedilink
    13711 months ago

    When you boot up your Linux, it will mount the root file system and start one program. That program is systemd. Everything else on your system will be started through systemd or processes that systemd started.

    That’s why it is important, everything else on your system is build on top of it. That’s also why it is difficult to replace, if you use something other than systemd, you need a completely new set of config files for that other thing or your software might not work properly. Most distributions have given up on that, as it’s just more work for a niche audience, and they just require systemd instead.

    As a regular user you don’t really have to care all that much, most stuff systemd does will happen automatically in the background and be setup by your distribution. It can still help to get familiar with systemd tools like journalctl as that’s where all your error messages go and systemctl is how you start, stop or disable services on your system. If you use something other than systemd those tools won’t exist and something else will take their place.

    As for why people don’t like systemd, it follows the kitchen-sink approach to software and does a lot of things at once. It replaced a whole zoo of smaller utilities like inetd, syslog, cron, atd, … Some people dislike this loss of modularity, while most the rest are happy that they have one tool that does all of those things well, especially since systemd can do a lot of those tasks better and in a more unified way than previously.

    • @m_randall@sh.itjust.works
      link
      fedilink
      2811 months ago

      This is a good post.

      As for why people don’t like systemd, it follows the kitchen-sink approach to software and does a lot of things at once.

      For people new to Linux I just want to point out - for better or for worse this goes against the Unix philosophy.

      Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is a universal interface.

      • @NRoach44@lemmy.ml
        link
        fedilink
        English
        17
        edit-2
        11 months ago

        One thing that people miss - either out of ignorance, or because it goes against the narrative - is that systemd is modular.

        One part handles init and services (and related things like mounts and sockets, because it makes sense to do that), one handles user sessions (logind), one handles logging (journald), one handles networking (networkd) etc etc.

        You don’t have to use networkd, or their efi bootloader, or their kernel install tool, or the other hostname/name resolution/userdb/tmpfiles etc etc tools.

    • @Napain@lemmy.ml
      link
      fedilink
      1211 months ago

      wow thank you for taking the time and explaining that! I didn’t except to learn that today right before bed today or ever. It’s these kind of great comments that i come to lemmy for. Just know that i really appreciate it!

    • MateoOP
      link
      fedilink
      English
      511 months ago

      Great comment, cleared up a lot of thing, thanks.