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

linuxmemes

32239 readers
666 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
     
    you are viewing a single comment's thread
    view the rest of the comments
    [โ€“] IrateAnteater@sh.itjust.works 132 points 1 day 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 72 points 1 day ago* (last edited 1 day ago) (19 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.

    [โ€“] BestBouclettes@jlai.lu 38 points 1 day 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.

    [โ€“] IrateAnteater@sh.itjust.works 48 points 1 day 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 26 points 1 day ago (10 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.

    load more comments (10 replies)

    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

    [โ€“] ICastFist@programming.dev 26 points 1 day 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 11 points 1 day 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.

    [โ€“] qqq@lemmy.world 2 points 21 hours ago* (last edited 20 hours ago)

    I initially agreed with your take there but I actually think they're a great argument for their point. head and tail are the exact same abstraction. Their implementations will be quite different, but they both serve "provided this data, give me these lines". Consider instead that these are simply operations on arrays and actually they map perfectly to Python slices: data[:10] and data[-10:]. This abstraction mapping also shows that, imo, the tool should provide data[n:m] and it would still be entirely consistent with the Unix philosophy. In fact, this tool exists in the Unix toolkit: sed -n n,mp. Three tools then are currently required for the simple concept of "slice lines". I also think it's a bit of a mess. You could replace head with sed fairly easily: sed -n '1,10p' but not tail (it is possible, but quite slow and very opaque)

    As an aside I actually found this quite frustrating myself because I don't like reaching for sed in the n:m case (I always forget and end up piping head to tail) and ended up writing my own tool for essentially this style of slicing input, also replacing probably my least favorite use of my least favorite Unix tool, dd, to slice arbitrary byte sequences. The tool doesn't feel overloaded and I use it quite often.

    (I'm sure many people have written this same tool. There is probably a widely known open source option that I've just never come across)

    [โ€“] hirihit640@sh.itjust.works 6 points 1 day 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 (11 replies)
    [โ€“] shininghero@pawb.social 21 points 1 day ago* (last edited 22 hours ago) (4 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.

    [โ€“] Laser@feddit.org 4 points 1 day ago

    resolved is entirely optional and disabled by default, I use it on case of non-mobile devices but leave it on laptops etc.

    DNS resolution isn't something exotic, it makes sense for systemd to implement it in a simple optional daemon

    [โ€“] caseyweederman@lemmy.ca 6 points 1 day ago (1 children)

    You've misunderstood something.
    systemd-resolved is one of the services that uses systemd's service management system
    You're saying "don't use this service management system to manage your services"

    [โ€“] shininghero@pawb.social 2 points 22 hours ago (1 children)

    I may have written that in a confusing way. I'm saying systemd's job is service management. Systemd-resolved is an unnecessary bit of scope creep.

    [โ€“] caseyweederman@lemmy.ca 1 points 20 hours ago

    systemd-resolved is a service. It's not scope-creep. It's its own thing built in the systemd framework.

    load more comments (2 replies)
    [โ€“] mabeledo@lemmy.world 14 points 1 day 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 1 day ago (6 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...

    git downvoted for mysterious reasons

    Lemmy is just highly opinionated, poor social skills, and often closed minded.

    load more comments (5 replies)
    load more comments (12 replies)
    [โ€“] AnUnusualRelic@lemmy.world 11 points 1 day ago (1 children)

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

    [โ€“] Kaligalis@lemmy.world 6 points 1 day 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.

    [โ€“] Tja@programming.dev 4 points 1 day ago

    And if it's not expected, it also eventually will be part of systemd.

    [โ€“] Hupf@feddit.org 6 points 1 day ago

    I hear they will work on a display server next called waylanD or something /s

    load more comments (1 replies)
    load more comments (23 replies)