After a few conversations with people on Lemmy and other places it became clear to me that most aren’t aware of what it can do and how much more robust it is compared to the usual “jankiness” we’re used to.

In this article I highlight less known features and give out a few practice examples on how to leverage Systemd to remove tons of redundant packages and processes.

And yes, Systemd does containers. :)

  • marmarama@lemmy.world
    link
    fedilink
    arrow-up
    68
    ·
    11 months ago

    Do we have to bring this up again? It’s just boring.

    systemd is here and it isn’t going anywhere soon. It’s an improvement over SysV, but the core init system is arguably less well-designed than some of the other options that were on the table 10 years ago when its adoption started. The systemd userspace ecosystem has significantly stifled development of alternatives that provide equivalent functionality, which has led to less experimentation and innovation in those areas. In many cases those systemd add-on services provide less functionality than what they have replaced, but are adopted simply because they are part of the systemd ecosystem. The core unit file format is verbose and somewhat awkward, and the *ctl utilities are messy and sometimes unfriendly.

    Like most Red Hat-originated software written in the last 15 years, it valiantly attempts to solve real problems with Linux, and mostly achieves that, but there are enough corner cases and short-sighted design decisions that it ends up being mediocre and somewhat annoying.

    Personally I hope that someone comes along and takes the lessons learned and rewrites it, much like Pulseaudio has been replaced by Pipewire. Perhaps if someone decides it needs rewriting in Rust?

    • TCB13@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      27
      ·
      11 months ago

      The core unit file format is verbose and somewhat awkward, and the *ctl utilities are messy and sometimes unfriendly.

      While I agree with the rest I don’t particularly believe in this. The unit format is well structured and solves many pitfalls of previous approaches, it also supports configuring a myriad of different things from mounts to sockets and the network in a nice way.

    • SpaceCadet@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      12
      ·
      11 months ago

      Thanks for summarizing my feelings on systemd in a less inflammatory way than if I had written it myself.

      I’ve found that most distributions have implemented it properly and for the most part it works quite well and stays out of my way, it’s only when for some reason you have to dive into the minutiae of a unit file and getting into all the dependencies and stuff that it gets annoying quickly.

      • w2qw@aussie.zone
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        11 months ago

        The dependency system takes a bit to understand but compared to like upstart it was a massive improvement.

          • dmar@lemmy.world
            link
            fedilink
            arrow-up
            4
            ·
            11 months ago

            I don’t see how exactly that is systemd’s fault.

            You are blaming it for having proper dependency handling?

            • SpaceCadet@sopuli.xyz
              link
              fedilink
              English
              arrow-up
              10
              ·
              11 months ago

              I’m blaming it for making it a pain in the ass to debug dependency problems and for having the confusing, non-intuitive, overly verbose and redundant syntax that probably caused the problem in the first place.

              Like, who the hell can memorize all the subtle differences in behavior between After=, Requires=, Wants=, Requisite=, BindsTo=, PartOf=, UpHolds= and then all their “reverse” equivalents?

              • Laser@feddit.de
                link
                fedilink
                arrow-up
                1
                ·
                11 months ago

                You’re right that the difference isn’t overly obvious. However, for most services, Wants= is enough. I think some of these (like Requisite=) came from actual users’ demands where they had to solve corner cases in their setup that systemd did not allow with the existing features. I think especially UpheldBy= is a smart addition; it adds restarting to a service only if that services is used as a dependency for the one it upholds.

    • Oliver Lowe@lemmy.sdf.org
      link
      fedilink
      arrow-up
      2
      ·
      11 months ago

      I installed OpenBSD and never looked back. This isn’t an option for everyone but I encourage those who have these kinds of feelings to have a look.

  • ozymandias117@lemmy.world
    link
    fedilink
    English
    arrow-up
    51
    ·
    11 months ago

    One of the big complaints of systemd detractors I read is that it’s “monolithic” and “taking over everything” and this “shouldn’t all be part of init”

    You might want to point out that all the features outside of systemd-as-init are optional and can be replaced or ignored if you don’t want them. They also don’t run as PID 1

    You do have to use systemd-journald, but you can also just forward it to syslog if you want

    • TCB13@lemmy.worldOP
      link
      fedilink
      arrow-up
      16
      ·
      11 months ago

      all the features outside of systemd-as-init are optional and can be replaced or ignored if you don’t want them

      Yes, but the point of the article was kind of the opposite - simply try all the systemd tools and components and see how much better things can get.

  • jimakososx@lemmy.ml
    link
    fedilink
    arrow-up
    43
    ·
    11 months ago

    systemd brings much functionality. It can’t follow unix philosophy because unix is 50 years old. the whole community drama about this systemd VS sysV VS OpenRC VS whatever comes up, is funny. There are distros that are systemd-free if you wish so much to avoid it.

      • rocketeer8015@discuss.tchncs.de
        link
        fedilink
        arrow-up
        3
        ·
        11 months ago

        This was refuted long ago. Systemd isn’t a single binary file doing everything, it’s a project that has many different binaries doing many different things. The only difference is that they are developed under one project to ensure they integrate well with each other. What your doing is like complaining that glibc tries to do everything, I mean it does open, read, write, malloc, printf, getaddrinfo, dlopen, pthread_create, crypt, login, exit and more… Xorg would be another example of a project that does many things instead of one very well.

        • michaelrose@lemmy.ml
          link
          fedilink
          English
          arrow-up
          2
          ·
          11 months ago

          Splitting something into multiple executables doesn’t make something not monolithic just like splitting a program into multiple source files doesn’t make it not a monolith. It’s not a monolith when the different component parts can be cleanly factored out, replaced, and used outside of the original context or with different versions of related components This is in fact very hard. Much harder than making a monolith.

          For instance the X11 ecosystem isn’t a good example of a monolith because its designed to make it trivial to swap in different loosely coupled components. You don’t worry about needing your window manager and X11 to come from the same commit so they actually work. You can argue that the toolbox that systemd provides it is worth it but arguing that it’s not a monolith just screams I’m not a developer.

  • mrvictory1@lemmy.world
    link
    fedilink
    arrow-up
    33
    ·
    11 months ago

    Finally a systemd praise post after so many hateful remarks. I knew systemd could do dns resolving but just learned it could handle the entire network stack and replace NetworkManager. I have a question: How can services such as Apache adapt to both NM and systemd at the same time? NM and systemd have different wait-online services. You can also add systemd-analyze for boot time analysis to the list.

    • TCB13@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      edit-2
      11 months ago

      How can services such as Apache adapt to both NM and systemd at the same time? NM and systemd have different wait-online services

      If you look at the systemd unit for Apache you’ll just find After=network.target - it doesn’t wait-online at all. Apache doesn’t really care if you’re using NM or systemd-networkd, it simply queries the system (like the ip command does) to know what’s going on with the network. It was designed as recommended for moderns programs: it is aware that your network might change and listens for the appropriate signals and takes care of the binds dynamically.

    • Laser@feddit.de
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      11 months ago

      I knew systemd could do dns resolving but just learned it could handle the entire network stack and replace NetworkManager.

      It depends on your use case. I have three machines and use NetworkManager on one of them and systemd-networkd on the others. The latter is great for static configurations, but for a notebook that roams WiFi networks, it doesn’t make the most sense.

    • TCB13@lemmy.worldOP
      link
      fedilink
      arrow-up
      9
      ·
      11 months ago

      imagine some kind of GUI like Windows has for system services

      The problem is that systemd has so many possible options and ways to do things that you’ll either end up with something that “lags behind the actual systemd resources” or a glorified text editor specially made to write systemd units.

    • michaelrose@lemmy.ml
      link
      fedilink
      English
      arrow-up
      1
      ·
      11 months ago

      People have been making services for decades and systemd is 13 years old. I kind of feel like it probably has virtually all of the options its ever going to have. Also most of what people would use such a GUI for is to start stop restart enable disable the thing people have been doing for an eternity which doesn’t require even displaying the unit file.

  • Quazatron@lemmy.world
    link
    fedilink
    arrow-up
    19
    ·
    11 months ago

    Very interesting article with lots of links that I’m sure to revisit often. I use Linux daily and was not aware of all the possibilities that systemd has to offer.

    Some of the cruft I use nowadays to manage Linux machines can be optimized by simply moving over to the systemd equivalent. Of particular interest to me are: triggers, timers, file monitoring, and ntp.

    • TCB13@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      7
      ·
      11 months ago

      Thank you. NTP and DNS are the easiest to get into. Simply enable the services and move on.

      • t0m5k1@lemmy.world
        link
        fedilink
        arrow-up
        7
        ·
        11 months ago

        I stopped using resolved as it tends to ignore what I tell it to do and still grab DNS from the router which I don’t want and can’t disable on the proprietary router.

        openresolv/Resolveconf was never broken in the first place so I’m not sure what systemd was trying to fix with this.

        • TCB13@lemmy.worldOP
          link
          fedilink
          English
          arrow-up
          8
          ·
          edit-2
          11 months ago

          That’s most likely because… you didn’t read the manual! :D

          FallbackDNS= A space-separated list of IPv4 and IPv6 addresses to use as the fallback DNS servers. Please see DNS= for acceptable format of addresses. Any per-link DNS servers obtained from systemd-networkd.service(8) take precedence over this setting, as do any servers set via DNS= above or /etc/resolv.conf.

          Assuming your network is DHCP, edit your config eg. /etc/systemd/network/10-eth0.network:

          [DHCPv4]
          UseNTP=no
          UseDNS=no
          UseHostname=no
          

          Your system will not pick NTP and DNS servers and also ignore the hostname provided by the router. Also make sure you ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf

          https://www.freedesktop.org/software/systemd/man/systemd.network.html#[DHCPv4] Section Options

  • ryannathans@lemmy.world
    link
    fedilink
    arrow-up
    16
    ·
    11 months ago

    All of this shit packed in is why it sucks. Do one thing and do it well. Try setting up a script to run on boot that doesn’t stop executing until you want to turn your pc off and watch all traces of sanity drain from your being. Now try it on freebsd. Much much easier

    • TCB13@lemmy.worldOP
      link
      fedilink
      arrow-up
      8
      ·
      11 months ago

      Did a couple of times, no issues. Simply add KillSignal=SIGINT or ExecStop=/bin/kill -s SIGINT -$MAINPID & /bin/kill -s SIGINT -$MAINPID and it will work out.

    • exi@feddit.de
      link
      fedilink
      arrow-up
      8
      ·
      11 months ago

      What’s the problem with that script? That’s such a basic use case and not very hard to do at all in systemd.

      Where do you struggle with it? Can we maybe help with something?

    • Thorned_Rose@kbin.social
      link
      fedilink
      arrow-up
      30
      ·
      edit-2
      11 months ago

      Ah yes, a piece of software that people can choose to use or not use is just like an unexpected, devastating disease that no one in their right mind would ever choose to have and that causes huge amounts of suffering and can be incredibly difficult or impossible to treat.

      Yep, cancer patients and survivors totally think having cancer is just like using systemd. 🤦🏻‍♀️

      • hansmeiser666@lemmy.world
        link
        fedilink
        arrow-up
        8
        ·
        edit-2
        11 months ago

        Except you’re NOT free to choose, every major distro shoves it into your face

        And it BEHAVES like cancer, that’s what I meant

        • be_excellent_to_each_other@kbin.social
          link
          fedilink
          arrow-up
          34
          ·
          edit-2
          11 months ago

          Except you’re NOT free to choose, every major distro shoves it into your face

          You can’t have been using Linux long if you think this is what not being free to choose means.

          Don’t use a “major distro”, use one made by likeminded folks. Example: https://www.devuan.org/

          Why do major distros have to make only the decisions you want them to make? Bugs the shit out of me that Gnome is the default desktop damn near everywhere, but so what? Are you paying their bills or otherwise contributing to some degree that they should change their decisions to suit you?

          Here’s a list from 2021: https://www.howtogeek.com/713847/the-best-linux-distributions-without-systemd/

          Another from2022: https://itsfoss.com/systemd-free-distros/

          Or build LFS without systemd.

          Or build Arch yourself without systemd.

          Want to remove it from Ubuntu? Here you go. I’m sure there are similar howtos for most major distros.

          The freedom of Linux and FLOSS is that you can roll up your sleeves and do it differently if you want to. Not that anyone owes it to you to do it for you. For that you have to hope other folks who have rolled up their sleeves have the same opinions you do - and in this case, some do!

          I have no concern about your opinion on systemd. But you seem really confused about what freedom is.

        • Tobias Hunger@programming.dev
          link
          fedilink
          arrow-up
          22
          ·
          11 months ago

          How is that different to when every distribution shoved their implementation of sysv-init into your face? You were never free to choose your init, it always came from the distribution. You could (and still can) replace the init system, if you are willing to do the work involved.

          That’s the whole point: Nobody is willing to do the work for one distribution, if they can just improve systemd and fix a whole bunch of distributions at once. That’s why developers flock to the systemd umbrella project to implement their ideas there, which is why systemd keeps getting cool be features for the plumbing layer of Linux – which is far more than just the init system.

        • GlowHuddy@lemmy.world
          link
          fedilink
          arrow-up
          10
          ·
          11 months ago

          Thinking about it from your point of view, maybe MS was right and Linux is a cancer too. Technically it behaves similarly to systemd, since most Unixes are actually Linuxes nowadays (excluding BSD ofc, but they are still in the minority, similarly to alternatives to systemd). It even is a binary blob as well!

          Should every distro use/develop a different kernel? Should we focus our resources on providing alternatives and again have a multitude of different Unix versions, every incompatible with each other? Isn’t it better that we have this solid foundation and make it as good as it can be?

          Overall I think standardization of init is not so bad, just like adopting the Linux kernel was. It is actually quite nice that you can hop from distro to distro and know what to expect from such a basic thing as init process.

          Anyways, in Linux land you actually have a possibility to replace it. Granted, it is not as easy, however there are plenty of distros that allow you to ditch systemd in favor of something else.

        • Thorned_Rose@kbin.social
          link
          fedilink
          arrow-up
          7
          ·
          edit-2
          11 months ago

          Missing my point. It’s a shitty comparison that is incredibly insensitive towards people who suffer with cancer and their friends and family.

        • Jajcus@kbin.social
          link
          fedilink
          arrow-up
          7
          ·
          11 months ago

          Every major distro uses systemd, because before that it was nearly impossible to properly implement things that distros have to provide.
          Most startup scripts were incredible set of hacks to make services behave. Those were very inefficient (they could not be efficient being shell scripts calling other commands for various simple repetitive tasks) and would often break when circumstances were different from ideal.

          Systemd just makes building Linux distribution much easier, and the resulting system is more reliable, more consistent and more flexible. Why would distro developers chose anything else?

    • Sandbag@lemmy.world
      link
      fedilink
      arrow-up
      13
      ·
      11 months ago

      How on earth can you say that? Systemd, while not perfect, creates a system that helps newbies come in and understand Linux, helps Linux grow. Afterwards they can shift to a non systemd distro, but systemd provides a valuable tool.

      • TCB13@lemmy.worldOP
        link
        fedilink
        arrow-up
        6
        ·
        11 months ago

        Hmm that’s an interesting take on systemd. Not sure if anyone would be pivoting to a non-systemd distro after experiencing it… Well I’ve been using Linux before systemd and I wouldn’t switch back to what we had before simply because it makes my life easier in so many ways.

        But yes, I see how less fragmented and more approachable a systemd distro will look for a beginner.

      • gian @lemmy.grys.it
        link
        fedilink
        English
        arrow-up
        4
        ·
        11 months ago

        creates a system that helps newbies come in and understand Linux, helps Linux grow.

        Not sure about this.

        A new user probably don’t care (and rightly so) about how a certain service is started or stopped, it just need to work, which was true even before systemd.

      • michaelrose@lemmy.ml
        link
        fedilink
        English
        arrow-up
        1
        ·
        11 months ago

        Actually, its an opaque system that makes it much harder to understand what is going on because it’s a declarative file that is consumed in a non-obvious way by code written in c which is not going to be remotely comprehensible to them. Most people are apt to google for the magic incantation that appears to match their problem without understanding anything.

        Not only are simple and easy not the same they are opposing interests in most actual practices.

        I had an extremely simple Funtoo (Gentoo derived) installation it had bios boot -> 4 line grub.cfg with explicitly specified kernel and initrd. Making a kernel involved cding to the directory where the new kernel was making it copying a file and changing a text file to point to the new kernel. Understanding how software was built was work because you actually have to specify things you want vs don’t want but it was extremely simple. In fact everything was like that from boot, build, services. Anyone who took a few hours could probably trace it from the first line of grub.cfg to the last service starting up.

        I have a more complicated void install that uses rEFInd -> zfsbootmenu . When a new kernel is installed dkms rebuilds modules and dracut handles preparing the boot up, updating automatically creates a snapshot and zfsbootmenu makes it possible to boot into a prior version of your OS. I set none of it up it was configured by an installer and when I messed something up it was a LOT more work to understand how it works and it was impossible to trace it from end to end without googling and reading documentation.

        I have a single board computer running a derivative of Ubuntu. The official installation procedure that you are supposed to be able to do remotely doesn’t work at all so I plugged a monitor and keyboard to it loaded the image to a sd card and booted and ran the commands it said to run and it works without issue. It’s opaque but easy to use and if it ever doesn’t I’ll probably just reinstall the image from scratch and run the commands it said to run.

        I would recommend Ubuntu/Mint if you just want to do things. If you actually want to understand it for its own sake I would recommend something simple instead of easy.

      • Tobias Hunger@programming.dev
        link
        fedilink
        arrow-up
        18
        ·
        11 months ago

        Same reason as for all those years these old people are holding a grudge for…

        It is not Unix philosophy (nothing is these days), it does not solve any problem they ever had (it does), it is no improvement over what we had before (it is) and even makes some broken and moronic things harder (it does), it is insecure (it improves overall system security), and it is one monolithic blob (it is not). Before systemd nothing depended on the init system (true, but then it did nothing useful that made having such a dependency worthwhile), and before systemd we were all free to use other init systems and distributions did not pick one for their users (they always did, offering additional inits only as unsupported iption just likenthey do now).

        That’s the typical list you get.

        Oh, and it was shoved down all our throats by the mighty Lennart himself, backed by several multi billion dollar companies that brided thousands of distribution developers to destroy Linux (it was not).

        Funnily enough it is pretty much the same BS we had when that monster of complexity called sysv init was introduced into distributions, replacing a simple script with a forest of symlinks. Of course the community was much smaller then and so we had a loser number of idiots to shout at everybody else.

        • TCB13@lemmy.worldOP
          link
          fedilink
          arrow-up
          6
          ·
          edit-2
          11 months ago

          It seems that, in many people’s view, it’s better to have janky scripts starting systems, having to delegate logging management and service monitorization to the services themselves or cumbersome tools poorly used by most distros such as logrotate? Systemd offers a good thing, easy configuration and IT DOES fix a LOT of issues. People who never tried it won’t see how better it is, just try it… like I did 10 years ago.

          One of the moments where we see the true power of systemd is when we use it for containers and suddenly realize that the tools used to manage the system such as systemctl and journalctl can be used to inspect and affect a container without even having to enter it. Another equally interesting moment in the systemd journey is when you’ve an ARM system with 512MB of RAM or even less and you figure out that it will save you precious resources for other things.

        • TCB13@lemmy.worldOP
          link
          fedilink
          arrow-up
          10
          ·
          11 months ago

          The fact the original website is no longer available tells us a LOT about it. Maybe the server running it crashed because it didn’t have proper service monitoring… or all the init jankiness was wasting so much resources the guy paying for the server run out of money :D

          Now in all seriousness: I don’t disagree with most points however, systemd also provides a TON of functionally that was never this easy and stable. Also if you consider the grand scheme of things Docker and whatnot are a bigger virus than systemd is or will ever be and the irony is that systemd does run containers with less overhead :).

    • Tobias Hunger@programming.dev
      link
      fedilink
      arrow-up
      11
      ·
      11 months ago

      Where are those alternatives? I have not seen anything that is Baustoff convincing yet…

      It is not a project owned by redhat… the lead guy not even works there anymore. So the more interesting question is: What happens if Microsoft closes down the project? The answer: It will be forked.

    • garrett@kbin.social
      link
      fedilink
      arrow-up
      10
      ·
      11 months ago

      Red Hat didn’t “close up the source” to anything. All the source to RHEL is available in CenOS Stream’s git repos. All of the source to all Red Hat products is available in upstream projects too. Nothing’s “closed”.

      What was announced was that the source to RHEL would only be publicly published in git (with history, tagged releases, etc.) instead of publically available SRPMs (unless you use a Red Hat account — even a free one — then you could also download SRPMs).

  • Rune@lemmy.ml
    link
    fedilink
    arrow-up
    5
    ·
    11 months ago

    Systemd together with NetworkManager are two pieces of software I really dislike. They go against the very Unix philosophy. I like being able to piece all the bricks together on my own, not having monolithic pieces of software that try to do everything.

    • rocketeer8015@discuss.tchncs.de
      link
      fedilink
      arrow-up
      5
      ·
      11 months ago

      You make it sound as if it’s a religion … UNIX isn’t a dogma handed down by an infallible being, just a piece of software that made sense for its time. Todays needs are different than the needs 40 years ago, so ofc things have to change.

  • merthyr1831@lemmy.world
    cake
    link
    fedilink
    arrow-up
    4
    ·
    11 months ago

    Having choice is the best part of Linux, but Systemd is something so ubiquitous to Linux that it might as well be called Systemd/Linux instead of GNU/Linux.

    When you think of it like that, it feels much less like a bloated behemoth that needs to be de-monopolised and more like an integral piece of the puzzle that is turning the Linux kernel into an functional operating system.

    • Laser@feddit.de
      link
      fedilink
      arrow-up
      1
      ·
      11 months ago

      systems always implies Linux, but Linux doesn’t necessarily imply systemd.

      I always try to cover most of my stack with systemd components because they actually tend to be quite sane with a very transparent configuration. It’s no surprise a lot of distributions picked it up. As you said, it does exactly that, make an OS based on Linux easily available. Sure you can do the same with a variety of other tools, but just letting systemd do the heavy lifting for you sure is tempting.

      That doesn’t mean it’s the only choice. I’d love to try Chimera Linux one day which doesn’t include systemd (in fact it doesn’t include a lot of stuff most other distributions do) but it ticks a lot of boxes for many.

  • gkpy@feddit.de
    link
    fedilink
    arrow-up
    3
    ·
    11 months ago

    systemd is great, but being disingenious isn’t helping anyone:

    chrony -> sd-timesyncd […] one less daemon

    just because it ships with systemd doesn’t mean it magically runs without it’s own process

    • TCB13@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      11 months ago

      chrony -> sd-timesyncd […] one less daemon

      Thanks for pointing that out, it was out of place. :)

  • bitwolf@lemmy.one
    link
    fedilink
    arrow-up
    3
    ·
    11 months ago

    Pretty sure that’s how the Steam Deck runs also. At least every custom OS I’ve seen for it is just a ContainerFile and systemd-boot

  • Drito@sh.itjust.works
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    11 months ago

    And yes, Systemd does containers. :)

    Are systemd duplicates such as containers and systemd-boot are better than the existing ?

    • TCB13@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      10
      ·
      edit-2
      11 months ago

      It isn’t always about being better. Docker has its use cases more for single binaries, LXD provides a nice interface while systemd-nspawn is built in and allows you to setup containers with a a common and known unit file. It also allows you to control the containers with the same systemd tools you use for your host machine, zero learning curve and you’re less likely to have to enter containers. Another example, I might not want to install LXD/LXC on a low resource system as it will bring snap and waste resources and systemd fixes that.