this post was submitted on 05 Mar 2024
221 points (95.9% liked)
Linux
48029 readers
816 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Whether you like Systemd or not, let’s not spread disinformation.
All these things still exist with Systemd. They are just called Systemd dash something. Also, while Systemd is feature rich, it is pretty heavy relative to many alternatives.
Distros that avoid Systemd typically do so because they consider it bloated and possibly insecure.
If you are a fan of Systemd, it is probably because you like the standardization and the integration across previously disparate services. That makes sense. If you think it is making your system faster or lighter, you have not explored the alternatives. Obviously Systemd was a big leap forward in init. Other systems have appeared that also work really well but they are probably too late to matter mainstream. The “market” has spoken and Systemd is the winner.
Although you're right that's not that "cut and dry" there's a lot integrated and baked into the systemd core. Even if you consider a "systemd dash something", let's say
systemd-networkd
we're suddenly talking about a single efficient daemon that covers all networking from basic IPv4 DHCP to IPv6 (with all it's possible addressing schemes), can act a client or more like a typical router acts, delegate stuff and manage the entire thing from top to bottom in a cohesive way.Just think about the amount of crap you've to setup to have a system do dual stack networking and provide prefix delegation on another interface, with systemd it's just
systemd-networkd
. From the basics to serve IP's, the classicalisc-dhcp
can do both IPv4 and IPv6, however...Or you'll just find you the implementation is bad and you'll run
wide-dhcpv6
instead. And then you won't survive withoutradvd
for router advertisements etc.Exactly, systemd solves tons of painful issues and provides a cohesive ecosystem of tools to manage Linux systems. While there are other great alternatives none as are complete and solid as systemd.
But it may. By not having to deal with bunch of poorly integrated tools such as
dhcpcd
,dhcpv6
,radvd
,chrony
,NetworkManager
,resolvconf
,logrotate
and others we might actually have less overhead. And I'm not even talking about the time we don't have to spend making sure all those integrate properly learning 234 different configurations syntaxes and dealing with specific bugs that only happen when program X interacts with program Y with feature Z enabled.I'm not saying system it perfect, because it isn't but it sure provides a LOT of piece of mind, stability and makes Linux a lot better than it used to be with init and friends.
I've yet to find a use-case for "making my system lighter" by exchanging a daemon that takes <0.1% of my total system memory for a bunch of poorly maintained bash scripts.
Oh yeah: https://lemmy.world/comment/8190331