this post was submitted on 11 Jul 2023
23 points (96.0% liked)

Linux

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

Hello! I'm thinking about switching from my beloved fedora to a rolling release distro, because it really intrigues me, but I'm a bit scared of Arch, it's still too soon for me to go down this rabbit hole XD
what do you think about debian testing? It's not a "true" rolling release as long as I understand, but it "practically" behaves like one, correct? On the system informations I still see Debian 12, what will happen when Debian 13 stable will be released?

sorry if these are silly questions and thanks to all in advance!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] -3 points 1 year ago (2 children)

Yes, Devuan is more stable. It's not modified or forked, it's still Debian .deb files but with a different init system.

The difference is systemd is one thing to handle everything. The other inits are launched or initiated each time something thing starts on an individual basis.

I have heard that systemd has greatly improved, but a different init starts a new process ID for each separate program so if something locks or freezes, it affects that one inidividual init process. For systemd, which runs system wide to handle everything, if one program locks, systemd has to make adjusts for the whole system to fix the problem.

I also tried Artix, which is native Arch without systemd, and while it was still a rolling system like Arch, I found Artix to run smoother or lighter than Arch.

Some people find command line with systemd easier to do becase it is one centrslized control system, I say no, what you gain in ease of management you lose in optimal performance and precise control over each individual one, as opposed to systemd being a blanket system. I want Firefox running an isolated process from the one that Plasama desktop is running, each sith their own init started only when each one was started and not controlled by a shared resource.

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

Devuan is more stable

So Devuan has even older versions of packages than Debian? Stability in the distro context means that features, APIs, UIs don't change. Please don't mix software bugs with stability.

It may be I've entirely misunderstood how systemd works, but I think your description of it is off by a mile too.

but a different init starts a new process ID for each separate program

Of course there are PIDs with systemd too! First of all, systemd itself has a PID (1).

For systemd, which runs system wide to handle everything, if one program locks, systemd has to make adjusts for the whole system to fix the problem.

This is just wrong... Sure, if the service in question is dependent on a lot of other services, or vice versa. If your programs tend to lock, that's the application's fault and should be handled at the application level.

I found Artix to run smoother or lighter than Arch.

This is most definetly a difference in what else is running on the system. Systemd doesn't really use that much resources. Unless you are measuring RAM usage in the megabytes. Which is of course valid on constrained systems, but on a regular desktop one browser tab will need orders of magnitude more resources than any init system.

I want Firefox running an isolated process from the one that Plasama desktop is running

This just shows you have absolutely no clue on Linux processes, I really really doubt anyone is running Firefox under systemd. And neither have you.

There are valid reasons for choosing a different init system, but you have not provided a single one that is really true. It seems like you are only repeating things heard from some one else.

The difference is systemd is one thing to handle everything

This is true, but it refers to systemd handling a lot more than process management. Systemd has the problem that nowadays it does log management, memory management, login management, user management etc. This goes against the UNIX philosophy of one tool for one job, and THAT is why people frown on systemd.

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

super clear answer! thanks!