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.

Especially for homelab owners:

Have you ever felt like there might be something wrong with your current approach to installing and managing your services? Have you figured out how massively bloated systems are becoming with Docker and tons of little “helpers” that at the end of the day have dependency issues, are hard to understand and modify? Maybe you just want to squeeze a few extra miles out of a memory-tight system such as a Raspberry Pi. Deep learning Systemd will give you an edge and a better understanding about how your systems work and improve your workflows.

And yes, Systemd does containers. :)

  • SayCyberOnceMore
    link
    fedilink
    English
    210 months ago

    Nice article, I’ll have to go through that again on my next clean build.

    There are some features though, like timesync, that aren’t quite as cut & dried, so I do wish systemd was more modular and I could only install the part(s) I wanted

    But, interesting about the containers… I didn’t know that - thanks!

      • SayCyberOnceMore
        link
        fedilink
        English
        110 months ago

        Sure

        1st place to look at comparison of features (IMHO 😉) is the Arch Linux Wiki

        And there’s also a good list on the Chrony site

        But my brief list is:

        • If you need to sync and provide time, then use ntpd.
        • Otherwise, the (SNTP) client-only systemd-timesyncd is “better”, but, this doesn’t (yet?) use a DHCP NTP option and always writes to a file - not good for read-only filesystems / SD cards (source)
        • For laptops / intermittent network connections, use chrony (Note: on LinuxMint, installing this removes systemd-timesyncd)
        • For non-battery backed RTCs (ie Raspberry Pi), there’s also fake-hwclock

        So, I go with the general theme of your article - keep it simple, don’t install multiple tools to do the same thing - but as you can see, there are use cases where I personally wish we could remove the systemd component(s) and keep the others.

        • @TCB13@lemmy.worldOP
          link
          fedilink
          English
          110 months ago

          I never had issues with systemd-timesyncd in laptops / intermittent network connections. It works as expected…