this post was submitted on 15 Aug 2023
180 points (99.5% liked)

Linux

47232 readers
789 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

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?

top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 170 points 1 year ago (7 children)

Systemd is the first program that runs once the kernel has started. It's job is mostly just starting up other processes, and managing those other processes. If you don't know what systemd is, then you probably shouldn't care about if you're using it or not, it's good software but there are fine alternatives.

What makes systemd particularly interesting is that it is different from historical init systems. Historically these init systems were an unholy mess of shell scripts. This offers maximum flexibility, but limits the functionality of the init system itself. Systemd replaces these shell scripts with simple ini-like service files that allow everything to be declared simply and declaratively, and allows specifying more rich metadata, like dependencies. But it's different, and some people place a higher value on "how it's always been" than pragmatism. I personally have zero sympathy for them because throwing out objective progress to hold onto a broken system designed for 1960s computing is just dumb.

[–] [email protected] 53 points 1 year ago

throwing out objective progress to hold onto a broken system designed for 1960s computing is just dumb

Preach.

[–] [email protected] 36 points 1 year ago (1 children)

I had to battle with the fucking initd and upstard before systemd. Those stupid headers of the scripts in /etc/init.d/ we wonderfully undocumented, didn't have syntax checks, depended on a bunch of other shell scripts that didn't have any damn comments in them.

systemd was going to happen sooner or later because nobody was going to put up with that bullshit forever.

Those people arguing about "do one thing right" blablabla don't care about principles, they care about superiority. They want to feel like they're the minority who can do stuff so that in forums they can be toxic and respond with "RTFM" or "LMGTFY". They don't want it easier and more functional, they want it hard so that they can gatekeep.
Like a bunch of Catholics: I experienced pain, so you have to too!

systemd can containerize services! To do that kind of stuff with initd, you'd have to know how create process-, user-, and network namespaces, and a bunch of other stuff.

[–] [email protected] 19 points 1 year ago

It's especially funny because systemd isn't one program any more than GNU is. It's a project. systemd-initd handles init. systemd-journald handles journal logs. systemd-resolved handles DNS resolution. Etc. Each systemd daemon has one area of responsibility!

[–] [email protected] 20 points 1 year ago* (last edited 1 year ago)

I mean to a certain degree, I can understand if people find a problem with Poetterings approach of doing things !CORRECTLY!. Like, systemd-resolved resolving A-records with multiple addresses ina deterministic fashion because it's not defined not to be deterministic, and because actual load balancing would be better. It's not wrong, but it's breaking everything. And it got patched after some uproar. And there are a few things like that.

But at the same time - I don't think people appreciate how hard doing process management right on linux can be, especially if the daemon to run is shitty. Like, init scripts just triggering the shutdown port on a tomcat - except the tomcat is stuck and not reacting to the normal shutdown port and now you have a zombie process and an init script in a fucked up state. Or, just killing the main process and for some reason not really removing the children, now there's zombies all over the place. Or, not trying appropriate shutdown procedures first and just killing things, "because it's easier" - except my day just got harder with a corrupt dataset. Or, just trying soft and "Pwease wexit Mr Pwocess" signals and then just giving up. Or having "start" just crash because there was a stale PID from an OOM killed process around. Man I'm getting anxiety just thinking about this.

And that's just talking about ExecStart and ExecStop, pretty much, which I have done somewhat correct in a few init scripts back in the day (over months of iteration of edge cases). Now start thinking about the security features systemd-analyze can tell you about, like namespaces, unmapping syscalls, masking parts of the filesystem, ... imagine doing that with the jankyness of the average init.d script. At that point I'd start thinking about rebooting systems instead of trying to restart services, honestly.

And similarly, I'm growing fond of things like systemd-networkd, systemd-timesyncd. I've had to try to manage NetworkManager automatically and jeez... Or just directly handling networking with network-scripts. Always a pleasure. Chucking a bunch of pretty readable ini-files into /etc/systemd/networkd is a blessing. They are even readable even to people rather faint on the networking heart.

[–] [email protected] 8 points 1 year ago (1 children)

I thought people hate systemd because it’s a resource hog compared to OpenRC. TIL i guess

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

The difference is absolutely negligible.

[–] [email protected] 5 points 1 year ago

I never used openRC (outside of Docker containers that run Alpine) so I wouldn’t know. Linux community has enough controversies, init utils shouldn’t be one of them

[–] [email protected] 7 points 1 year ago* (last edited 1 year ago) (1 children)

I was with you until the last paragraph. Just about every init system is different from historical init systems. Do you really think OpenRC or runit or any of the other init systems people are using have any similarity to SysV init? I think you're attacking a strawman in the last paragraph. (Edit: Except Slackware users. Slackware still does init the way it's traditionally been done, but I can't think of anyone else who does)

[–] [email protected] 4 points 1 year ago* (last edited 1 year ago)

Do you really think OpenRC or runit or any of the other init systems people are using have any similarity to SysV init?

Yes? OpenRC is certainly much closer to sysvinit than systemd and in many ways just expands upon it.

[–] [email protected] 4 points 1 year ago

Best answer I've ever read ☝🏻☺️

[–] [email protected] 3 points 1 year ago

Solid answer.

[–] [email protected] 137 points 1 year ago (3 children)

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.

[–] [email protected] 28 points 1 year ago (2 children)

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.

[–] [email protected] 17 points 1 year ago* (last edited 1 year 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.

[–] [email protected] 10 points 1 year ago (1 children)

Could one argue that a monolithic kernel such as the Linux kernel also goes against that principle?

[–] [email protected] 5 points 1 year ago (1 children)

Technically the Linux kernel is just an interface with lots of modules

[–] [email protected] 6 points 1 year ago

So is systemd. It is definitely modular and I think it has multiple interfaces as well. I’m not sure if you have configure systemd modules like GRUB does.

[–] [email protected] 12 points 1 year 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!

[–] mateowoetam 5 points 1 year ago

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

[–] [email protected] 50 points 1 year ago* (last edited 1 year ago)

You are asking the wrong question, my friend. You should be asking what doesn't systemd do?

[–] [email protected] 27 points 1 year ago* (last edited 1 year ago) (1 children)

What does exactly systemd do?

It mostly causes heated discussions and a feeling of nostalgia for simpler times.

When your computer finishes loading the kernel, you have to tell it what to do next. There are dozens of systems and services that have to run (once or keep running) for everything to work. Mounting your disk partitions, bringing the networking up, starting the GUI, initializing all kinds of services, etc.

Once upon a time most (all?) distros used sysVinit, adapted from Unix's System V to do that. It was simple and very easy to understand and setup: Very basically the init program would call scripts by alphanumerical order (passing "start" to scripts starting with S and "stop" to ones starting with K). You'd place these scripts in /etc/rcX.d, X being a number, the runlevel (and you had just a handful of runlevels, like halt, reboot, single user, gui, etc). Want to run something between starting the network and bringing up sshd? Just create a script in /etc/init.d and link it to /etc/rcX.d naming it SNNmyscript, with NN being a number between the ones in SNNnetwork and SNNsshd. Want to disable a service? Change its script name from S... to K... Change startup sequences? Just change the NN.

Beautiful. But although it worked perfectly for most of us, it did have deficiencies. An obvious one is that it ran these scripts sequentially. Even if your computer was using 0.1% of its power to run each of them, you'd be waiting for each one to run in a single queue.

So a very nice and polite guy came up with systemd. Instead of simple scripts running sequentially, you could now create "unit files", describing each "thing to do", for what "targets" (similar to runlevels) that thing is needed, which scripts to run to make that thing happen, and which previous things should have been done before this thing (dependencies). With this, your computer can fire up multiple startup scripts (and stopping scripts) at the same time, only making sure to queue stuff so dependencies are met. For example, you don't need to wait for sshd to start your database server, but you do need networking before you mount shared disks.

That made boot times much better, but at the cost of complexity and maintainability (and here come heated discussions...).

The problem is that not everyone wanted that tradeoff, but systemd was shoved down everyone's throat as most (all?) distros adopted it.

So init freedom is a reaction to that, offering you the option of multiple init systems (there are more than just sysVinit and systemd).

No offense to all the other init systems, but I'd stick with sysV if you're really after simplicity and backwards compatibility with most older systems (and the old ways), or systemd, because it became the de facto standard, it's faster and more modern.

Should you care? If you have to ask this, then no.

If you had to craft your own init scripts and configurations, and had a ton of legacy scripts, or maybe were building very simple barebones systems, or very complex, always changing startup scenarios and targets or runlevels, or want to exercise your "freedom" just for the heck of it, then you could care.

If you're a distro hopper (i.e. are more dedicated to "use Linux" than to use applications which run on Linux), having tried 5 different init systems may be one more thing to brag about in distro hopper meetings.

If you're getting into Linux to learn Linux administration for career purposes, systemd is what you'll find in commercial systems.

If you're after an OS to just be an OS (i.e. just run your programs), just pick a well supported (community) and mainstream one, it will most likely come with systemd, and you'll probably never need to touch systemd. My wife (not technical) has been using exclusively Linux for 15+ years, and I can assure you with 100% certainty that she doesn't know which init system is there, or what is systemd or sysV.

If you're new to Linux, curious and want to learn all you can about it, I'd say there are many other interesting and useful things in Linux to learn and care about before you go down this rabbit hole, summoning some nice nostalgic but outdated tech from the dead.

[–] [email protected] 2 points 1 year ago (2 children)

So if sytemd just tells the OS what to run next where does the complaint that it doesn't "do only one thing well" come from?

[–] [email protected] 11 points 1 year ago* (last edited 1 year ago) (1 children)

Because systemd (the project) extends more than just systemd (the init system). It also includes things like:

  • systemd-journald (system logging)
  • systemd-timesyncd (Network Time Sync)
  • ~~NetworkManager~~ systemd-networkd (network interface/connection management)
  • systemd-homed (Home directory management)
  • systemd-resolved (DNS Resolver)

and so many more

Now, in my personal opinion, I do find it good in that these being under one umbrella project led to fairly good integration between these aspects of "system management" as a whole. But I do also concede that this may feel like too many responsibilities handled by one project

[–] [email protected] 5 points 1 year ago (1 children)

NetworkManager (network interface/connection management)

Pretty sure you mean systemd-networkd here. I find systemd-networkd to be very nice for headless systems, but NetworkManager seems to be a better fit for desktops because of the integrations it has available with KDE/Gnome/system tray

load more comments (1 replies)
load more comments (1 replies)
[–] [email protected] 21 points 1 year ago (1 children)
[–] [email protected] 12 points 1 year ago (2 children)
[–] [email protected] 22 points 1 year ago (1 children)
[–] [email protected] 5 points 1 year ago

this - but unironically

[–] [email protected] 9 points 1 year ago

Soon systemd will include a feature where it replaces the user and does all the computing for you.

[–] [email protected] 18 points 1 year ago

In a very basic description, systemd is your system schedule agent. It's the component that kicks things off in order so all the vital parts start in order so they have the other parts in place before they load.

It's reputation is muddy because it's doing more than a single task and old fashioned thinking is that system components should only do one thing. It's easier to configure but harder to understand than the older init

[–] [email protected] 17 points 1 year ago

Once the kernel has loaded itself, it needs to start up userspace as well. This is usually (perhaps exclusively) done by starting an 'init' program as process number 1, which then starts up all the other userspace programs: systemd is no different in that regard. It solves a variety of problems that traditional inits have, though:

  • rather than having near-incomprehensible shell scripts to start, stop, etc. all your programmes and services, it uses INI-style service files which are merely fiddly. They're kept in a few logical places, not 'everywhere'

  • starting and stopping services is done with simple, consistent commands - systemctl enable tomcat will start the Tomcat webserver at next boot; start, restart, stop and disable do basically what you think. Shell scripts are... less predictable, especially between distros.

  • rather than having to inspect all of your scripts and work out what order they start in, SystemD just lets you declare what they depend on, and it works it out for you - much simpler, much more robust.

  • rather than needing a separate tool to manage scheduled events (usually a chron-like, like anachron), SystemD just lets you write a 'timer' with the same syntax as its service files. They can be set to only trigger based on other events, like start-up, so you can do once-an-hour database snapshots (but only if the DB is running) very easily. That's painful with traditional inits.

  • also manages disk and network mounts, so you don't need a separate tool for those, and you can trigger other events off of them as well. That was also painful in older inits.

  • and power events too, if you want to trigger other tasks before sleep or when your laptop wakes up. (Again, was painful before.)

  • log files all in one place and controlled in the same way and accessed with one tool - again, traditional inits aren't like that.

  • (advanced usages) works well with cgroups, so if you're looking to limit the CPU time on a web service and make sure that it only uses its share of memory, that's dead easy. Very difficult with traditional init.

You can get a reasonable idea of what systemd is doing with a systemctl status at the command line; shows you the overall system status, with a nice tree view of what's running and what caused it to start. Getting that kind of overview on a eg. SysV init is much less simple.

Administrators and devops generally love it; it's very simple and straightforward and consistent and predictable. Certain devs dislike it, due to the original author, or feelings of overreach and complexity (although it's much simpler than learning everything that it replaces), or because they're attached to Bash scripts. (You can trigger Bash scripts with SystemD if you like, but they're not 'in control'.)

[–] [email protected] 7 points 1 year ago (2 children)

Linux is based on unix, which was an operating system designed to run on computers like the PDP-11 of the 1970s.

The problem is that computers have changed a lot, and Richie and Thompson couldn't perfectly forecast all those changes. Most notably, it predates the internet.

Anyways, computers changed and so systemd was invented to copy MacOS Tiger's launchd service model. Here's the only video you need to watch on the subject

[–] [email protected] 5 points 1 year ago

systemd was invented because Upstart fell under Canonical's CLA

[–] [email protected] 5 points 1 year ago

Here is an alternative Piped link(s): https://piped.video/watch?v=o_AIw9bGogo

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I'm open-source, check me out at GitHub.

[–] [email protected] 6 points 1 year ago

Why should you care? Tech diversity is good, and people can try out different approaches. Aside from that, there’s not a reason. Systemd is a really good desktop init.

What is init freedom? It means the init system can be changed without other software breaking because there is a dependency on some functionality of the init. In this case, a dependency on systemd. Although it’s probably a dependency on a subproject under the systemd umbrella rather then systemd itself.

Why systemd? It’s tailored to weirdnesses in the Linux kernel. The Linux kernel isn’t perfect, and it’s user land isn’t tied to the kernel. Systemd is a shim which papers over the oddities. I don’t remember which oddities, but they’re there and people ignore them.

Were there dumb decisions made? Yes, especially for the server side. I should test out some other inits for servers, but it ultimately works fine.

[–] [email protected] 6 points 1 year ago (13 children)

It's main purpose is to make some die-hards angry, I think.

load more comments (13 replies)
[–] [email protected] 5 points 1 year ago

I have been a Linux user since 2000.

All your chat is about technical issues, and both sides allways talk about the technical pros and cons of each system.

But i remember reading when debian team changed to systemd the arguments included these: 1- now Linux works like Windows and we do not like it. 2- now all depends on the systemd team, while init gives more freedom, so started devuan. 3- init and systemd can do the same but...here all the technical blah blah. By the way, if devuan exists and works well... 4- last and not least, systemd lets lock out the system (distro).

I am not an IT guy, just an user...so an ignorant. My questions: are those statements still valid or wrong? Even today the number 4 gets mi confused, it is, or was, a real reason?

Sorry my wording, my first language is not English.

[–] [email protected] 5 points 1 year ago

Systemd basically is what starts up other processes. You don't need systemd, but you do need some init manager. Kernel loads, then calls up the init manager to load everything else. Anything you want to make run on startup gets added to the init manager.

[–] [email protected] 4 points 1 year ago* (last edited 1 year ago)

From man systemd:

DESCRIPTION
       systemd is a system and service manager for Linux operating systems. When run as first process on boot
       (as PID 1), it acts as init system that brings up and maintains userspace services. Separate instances
       are started for logged-in users to start their services.

       systemd is usually not invoked directly by the user, but is installed as the /sbin/init symlink and
       started during early boot. The user manager instances are started automatically through the
       [email protected](5) service.

       For compatibility with SysV, if the binary is called as init and is not the first process on the
       machine (PID is not 1), it will execute telinit and pass all command line arguments unmodified. That
       means init and telinit are mostly equivalent when invoked from normal login sessions. See telinit(8)
       for more information.

       When run as a system instance, systemd interprets the configuration file system.conf and the files in
       system.conf.d directories; when run as a user instance, systemd interprets the configuration file
       user.conf and the files in user.conf.d directories. See systemd-system.conf(5) for more information.
[–] [email protected] 2 points 1 year ago
load more comments
view more: next ›