this post was submitted on 27 Jul 2026
794 points (97.4% liked)

linuxmemes

32586 readers
2532 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry of any kind will not be tolerated. This is an LGBTQ+-friendly community -- if that is a problem for you, you should leave.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • Don't come looking for advice, this is not the right community.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves / tolerates / hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 3 years ago
    MODERATORS
     
    top 50 comments
    sorted by: hot top controversial new old
    [–] IrateAnteater@sh.itjust.works 142 points 4 weeks ago (25 children)

    Of all the people who have incredibly strong opinions about not-so-incredibly important things, the virulently anti-systemd crowd are among the ones that baffle me the most.

    [–] Blue_Morpho@lemmy.world 80 points 4 weeks ago* (last edited 4 weeks ago) (9 children)

    There are many legitimate complaints. Bundling a bunch of services into a single binary goes completely against Unix philosophy. Systemd changing from text to binary logs is my pet peeve.

    Copying how Windows does things isn't necessarily the best.

    [–] IrateAnteater@sh.itjust.works 55 points 4 weeks ago (1 children)

    It's not people disliking it that makes no sense to me; everyone has their opinions.

    I just can't imagine having the level of anger displayed by some of the most vocal of the anti-systemd crowd.

    [–] Blue_Morpho@lemmy.world 30 points 4 weeks ago (4 children)

    If your favorite thing is being ruined and you can't stop it, I can understand frustration being displayed as anger.

    It's the same when Windows users get angry at things like OneDrive. It's forced on them and they don't want to have to work around removing it like people having to work around how Gnome is integrated into systemd.

    [–] IrateAnteater@sh.itjust.works 8 points 4 weeks ago (3 children)

    If your favorite thing is being ruined and you can't stop it, I can understand frustration being displayed as anger.

    That's the joy of open source though: you can stop it. You are free to use another init system, fork projects, etc. With Windows, you can't do any of that. Since it's closed source, workarounds that may be temporary are all you can do.

    [–] Blue_Morpho@lemmy.world 29 points 4 weeks ago (3 children)

    That's the joy of open source though: you can stop it.

    Not really. Unless you are prepared to devote your life to changing the source code to what you want, you have to accept it. And because you forked you are no longer downstream and will have to spend the rest of your life keeping up with patches.

    It's not much different than Windows. You could write a OneDrive uninstaller but you will have to spend the rest of your life with patches every time MS updates and breaks your uninstaller.

    load more comments (3 replies)

    If you like a distro and they switch to systemd, there's not a lot you can do if you aren't up to forking the whole distro. I feel like too many people in open source forget that most people have lives outside of Linux.

    load more comments (1 replies)
    load more comments (3 replies)
    [–] BestBouclettes@jlai.lu 39 points 4 weeks ago

    You know it's not a single binary, right ? Systemd is a bunch of different, mostly single usage, mostly optional, binaries. As far as Unix philosophy goes, Systemd is definitely following the principles, which is not the case for the Kernel for instance.

    As for the binary logs, I used to hate it, but then, not having to manually parse logs for filtering is really nice.

    I do have my issues with Systemd, but it not following the Unix philosophy is not one of them.

    [–] ICastFist@programming.dev 28 points 4 weeks ago (12 children)

    Richard P. Gabriel, in his essay β€œThe Rise of Worse-is-Better,” expounds on this theme (see Appendix A). His thesis is that the Unix design philosophy requires that all design decisions err on the side of implementation simplicity, and not on the side of correctness, consistency, or completeness. He calls this the β€œWorse Is Better” philosophy and shows how it yields programs that are technically inferior to programs designed where correctness and consistency are paramount, but that are evolutionarily superior because they port more easily. Just like a virus.

    The highest achievement of the Unix-aesthetic is to have a command that does precisely one function, and does it well (...) This philosophy, in the hands of amateurs, leads to inexplicably mind-numbing botches like the existence of two programs, β€œhead” and β€œtail,” which print the first part or the last part of a file, depending. Even though their operations are duals of one another, β€œhead” and β€œtail” are different programs, written by different authors, and take different options!

    From The Unix Hater's Handbook

    (I like Linux, but it's not all sunshine and rainbows)

    [–] everett@lemmy.ml 15 points 4 weeks ago (2 children)

    That head/tail thing is kind of a goofy argument. For one thing they aren't duals; tail is naturally more complex because the end of a file often changes and the application can optionally keep showing you the new output. Also, the fact that they're separate applications in the first place is arguably better than the a one-application approach, which would always require a command line switch to select between outputting the start or end of a file. And finally, while I guess this could vary between implementations of head and tail, mine has identical switches for all the common options.

    [–] hirihit640@sh.itjust.works 6 points 4 weeks ago (2 children)

    They could have been two commands that call a single parent command with different options. For example, imagine if cat had an option -N to restrict the number of lines that was printed, and also an option -t to start from the end. head would just proxy to cat -N and tail would proxy to cat -N -t. Combining the three into a single implementation reduces total LoC and opportunity for bugs. Also reduces total maintenance burden.

    I believe busybox is like this actually - a ton of Unix commands in a single package. It's used by Alpine Linux, a tiny and performance linux distro commonly used by docker containers.

    load more comments (2 replies)
    load more comments (1 replies)
    load more comments (11 replies)
    [–] shininghero@pawb.social 23 points 4 weeks ago* (last edited 3 weeks ago) (6 children)

    There's also a few cases of feature and scope creep, including the infamous systemd-resolved.
    Systemd, your job is to launch services, manage logs, and do timers and relaunches on a service crash. DNS is out of scope, leave that to existing services.

    load more comments (6 replies)
    [–] hirihit640@sh.itjust.works 16 points 4 weeks ago

    I was annoyed with binary logs until I found cases where compressing logs was literally 10x or more improvement, like if you ran into a bug that just repeatedly spit the same log.

    And I know logrotate compresses text logs too but if you're going to compress logs into tar.gz, might as well just make it binary by default and have a nice interface (journald) on top

    [–] mabeledo@lemmy.world 15 points 4 weeks ago

    A single binary? What?

    Systemd changing from text to binary logs is my pet peeve.

    Fast searchable compressed files is a fantastic idea.

    [–] mmmm@sopuli.xyz 14 points 4 weeks ago (5 children)

    The other day on a thread here about "people who use other init systems, why?" and i wrote about my experience with systemd and git downvoted for mysterious reasons. Other people that did the same as me also got their downvote sixpacks. And now they want to make it seem like it's just the people that hate systemd the annoying ones...

    [–] panda_abyss@lemmy.ca 6 points 4 weeks ago (2 children)

    There are too many people who use downvote to disagree with cogent and well written points.

    I try to only downvote if something is obviously trolling, in bad taste, or wildly stupid.

    load more comments (2 replies)
    load more comments (4 replies)
    [–] hneerqe@lemmy.world 7 points 4 weeks ago

    be nice to him, he's baffled

    [–] cadekat@pawb.social 6 points 4 weeks ago (10 children)

    What systemd binary is the worst offender, in your opinion?

    load more comments (10 replies)
    [–] AnUnusualRelic@lemmy.world 11 points 4 weeks ago (1 children)

    The real problem with systemd is figuring out what's is or isn't part of systemd...

    [–] Kaligalis@lemmy.world 7 points 4 weeks ago (3 children)

    That's easy: If it's a service reasonably expected to be present on most desktop systems, it's part of systemd or will eventually be.

    load more comments (3 replies)
    load more comments (23 replies)
    [–] RustyNova@lemmy.world 67 points 4 weeks ago (10 children)

    There's legitimate criticism of systemd and I do understand that people can hate it.

    Anyways, systemd is so nice to use. Even more with nixos.

    [–] JamesBoeing737MAX@sopuli.xyz 28 points 4 weeks ago (2 children)

    I'm trying to use alpine Linux on a VM. The amount of things depending on systemd is extreme. It's a pain in the ass not having it.

    Orr... I'm shitty at Linux.

    load more comments (2 replies)
    load more comments (9 replies)
    [–] AnUnusualRelic@lemmy.world 54 points 4 weeks ago (4 children)

    It's like that very very old joke...

    Geek: "So then I brought the girl home..."
    Excited crowd: "and then?"
    Geek: "then I pushed the keyboard and sat her on my desk..."
    Excited crowd: "woah, you have a PC? What processor do you have? Do you overclock? What cooling do you use?"

    [–] festnt@sh.itjust.works 28 points 4 weeks ago (2 children)

    at first i read it as greek and was very confused

    ... and then we had wonderful souvlaki! OPPA!!!

    α••(ᐛ)α•—

    [–] AnUnusualRelic@lemmy.world 6 points 4 weeks ago

    It probably also works, depending on your audience.

    load more comments (3 replies)
    [–] apftwb@lemmy.world 48 points 4 weeks ago

    I like systemd because my distro came with it and my computer boots.

    [–] OldChicoAle@lemmy.world 30 points 4 weeks ago (2 children)

    Linux users: come join the community! It's free, safe, and accessible!

    Also Linux users: you fucking swine? You do WHAT?!

    Like just be happy more people are joining the community and contributing. Shesh

    load more comments (1 replies)
    [–] zr0@lemmy.dbzer0.com 28 points 4 weeks ago (6 children)

    I was genuinely looking for alternatives to systemd, just because I was curious.

    I stumbled upon: https://nosystemd.org/

    The anger sits deep. What a beautiful sight.

    [–] deadbeef79000@lemmy.nz 11 points 4 weeks ago* (last edited 4 weeks ago) (1 children)

    That site is unusable on FF mobile.

    It has some craptastic scroll animation thing happening and have disabled the FF reader mode somehow.

    Which is a shame, I'd like to have read it :-(

    [–] finix2@lemmy.ml 8 points 4 weeks ago (1 children)
    load more comments (1 replies)
    load more comments (5 replies)
    [–] arc99@lemmy.world 23 points 3 weeks ago (6 children)

    Systemd and Wayland have become ragebait for some people.

    load more comments (6 replies)
    [–] Reznik@lemmy.zip 15 points 4 weeks ago

    Yes, I do. And even worse: I like it. 😈

    [–] rustydrd@sh.itjust.works 15 points 4 weeks ago (3 children)
    load more comments (3 replies)
    [–] Mikelius@lemmy.ml 12 points 4 weeks ago

    Gentoo lured me into OpenRC a long time ago and it's just basically my go to now. It's just so easy and "feels" less bloated to me.

    [–] saltesc@lemmy.world 12 points 4 weeks ago (6 children)

    There's no way he'd get laid with a keyboard like that.

    load more comments (6 replies)
    [–] ThunderComplex@lemmy.today 10 points 4 weeks ago (19 children)

    I do as well and honestly after looking into the effort required to switch I’m not gonna. Altho my Linux doesn’t boot rn soooo… xD

    load more comments (19 replies)
    [–] ZILtoid1991@lemmy.world 7 points 3 weeks ago (1 children)

    What are the alternatives to systemd? Why people are hating it (besides the AI slop and age verification stub in it)? Why is it not written in the D programming language?

    [–] Tja@programming.dev 12 points 3 weeks ago (1 children)
    load more comments (1 replies)
    [–] recursive_recursion@piefed.ca 6 points 4 weeks ago (1 children)
    load more comments (1 replies)
    load more comments
    view more: next β€Ί