this post was submitted on 19 Apr 2024
17 points (100.0% liked)

linuxmemes

21378 readers
1265 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 members of the community for any reason.
  • 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 will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 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. Even if you watch it on a Linux machine.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
  •  

    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 fork-bomb your computer.

    founded 1 year ago
    MODERATORS
     
    you are viewing a single comment's thread
    view the rest of the comments
    [–] Lmaydev@programming.dev 5 points 7 months ago (2 children)

    The idea as far as I can tell is that it's responsible for too many things and gives a massive point of failure.

    [–] rmuk@feddit.uk 8 points 7 months ago (3 children)

    Man, wait until these people hear about the filesystem and kernel.

    [–] Jumuta@sh.itjust.works 2 points 7 months ago (2 children)
    [–] BeardedGingerWonder@feddit.uk 1 points 7 months ago (1 children)
    [–] Gork@lemm.ee 1 points 7 months ago

    yes mr stallman

    [–] radiant_bloom@lemm.ee 1 points 7 months ago (2 children)

    Does it ? I thought it was never completed !

    On the other hand, if you want a microkernel that does exist, there’s Mach. But I don’t think you can replace Linux with it 😆

    [–] frezik@midwest.social 2 points 7 months ago

    It's been two years away for the last 30 years.

    [–] psud@lemmy.world 0 points 7 months ago (1 children)

    Yeah, there's a Debian implementation of GNU/hurd. Debian recommend you run it in a VM

    [–] rmuk@feddit.uk 1 points 7 months ago

    I won't bother. Sounds like hurd work.

    [–] ThrowawayPermanente@sh.itjust.works 2 points 7 months ago (1 children)

    The very existence of a defined kernel is an insult to the Linux philosophy

    [–] psud@lemmy.world 2 points 7 months ago

    The Linux kernel (the part that gives Linux the name) is antithetical to Linux philosophy? I could understand it being contrary to GNU philosophy

    [–] qjkxbmwvz@startrek.website 2 points 7 months ago

    In some ways I think the filesystem is philosophically the exact opposite of systemd


    I can boot my system with an ext4 root, with a btrfs /home...or vice versa. Or add some ZFS, or whatever. The filesystem is (with the exception of some special backup schemes) largely independent of the rest of the system, despite being of core importance.

    On the other hand, I can't change my init system (i.e., systemd) without serious, serious work.

    [–] ricecake@sh.itjust.works 3 points 7 months ago (1 children)

    It's also "infectious" software. The way systemd positions itself on the system, it can make it more difficult for software to be written in an agnostic way. This isn't all software, and is often more of a complaint by lower level software, like desktop environments.
    https://catfox.life/2024/01/05/systemd-through-the-eyes-of-a-musl-distribution-maintainer/ This isn't a terrible summary of some of the aspects of it.

    Another aspect is that when it was first developed, the lead on the project was exceptionally hostile to anyone who didn't immediately agree that systemd definitely should take over most of the system, often criticizing people who pointed out bugs or questionable design decisions as being afraid of change or relics of the past.
    It's more of a social reason, but if people feel like the developer of a tool they're forced to use doesn't even respect their concerns, they're going to start rejecting the tool.

    [–] snake_case_lover@lemmy.world 1 points 7 months ago (1 children)

    What do you expect from an init system? It's like saying my cpu is infectious because my computer depends on it

    [–] ricecake@sh.itjust.works 2 points 7 months ago (1 children)

    It's that it also decided to take over log management, event management, networking, DNS resolution, etc, etc.

    If it were just an init system that would be perfectly portable. People were able to write software that way with sysv for years.

    It's that in order to do certain low level tasks on a systemd system, you need to integrate with systemd, not just "be started by it". Now if a distro wants that piece of software, it needs to use systemd, and other pieces of software that want to be on that distro need to implement integration with systemd.

    A dependency isn't infectious, but a dependency you can't easily swap out is, particularly if it's positioned near the base of a dependency tree.

    Almost all of my software can run on x86 or arm without any issues beyond changing compiler targets. It's closer to how it's tricky to port software between Mac and Linux, or Linux and BSD. Targeting one platform entails significant, potentially prohibitive, effort to support another, despite them all being ostensibly compatible unix like systems.

    [–] Vilian@lemmy.ca 1 points 7 months ago* (last edited 7 months ago)

    log management, event management, networking, DNS resolution

    and this is a bad thing? the distro can choose to not use it, but because every systemd distro uses it, it's a 1000x easier to implement it without needing to put a fuck tons of if-else's for every distro