this post was submitted on 10 Apr 2025
530 points (84.4% liked)

linuxmemes

24389 readers
1517 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 will not be tolerated.
  • 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.
  • 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 2 years ago
    MODERATORS
     
    you are viewing a single comment's thread
    view the rest of the comments
    [–] [email protected] 21 points 2 days ago (2 children)

    I'd say actually a bit of the opposite. Generally speaking we don't need a new package manager or init system, and better hardware support is almost entirely a kernel concern (one might make an argument that the loose bits of key management and tpm2 tools and authentication agents could be better integrated for "Windows Hello" type function I suppose, but I doubt that's what the meme had in mind.

    Not really needing to reinvent the wheel on those, we got a variety of wheels, sometimes serving different sensibilities, sometimes any difference in capability went away long ago (rpm/dnf v. deb/apt).

    The best motivation I can think of at this point is to make specialty distribution that is 'canned' toward a specific use case. Even then it's probably best to be an existing distribution under the covers. I think Proxmox is a good example, it's just Debian but installer made to just do Proxmox. You want to do automated installation? Just use Debian and then add Proxmox (the official recommendation), because they have no particular insight on automated deployment, so why not just defer to an existing facility?

    The biggest conceptual change in packaging has been "waste as much disk as you like duplicating dependencies to avoid conflicting dependencies", maybe with "use namespace and cgroup isolation to better control app interactions" and we have snap, flatpak, appimage, and nix very well covering the gamut for that concept.

    For init, we have the easy to modify sysv init, or the more capable but more inscrutable systemd. I don't see a whole lot of opportunity between those two sorts of options already.

    [–] [email protected] 2 points 2 days ago* (last edited 2 days ago) (1 children)

    It's usually easier to criticize something than to go through the effort of understanding it. Posts like the OP are an example of that.

    ... And ironically, your post is doing the same thing here with software packaging:

    The biggest conceptual change in packaging has been “waste as much disk as you like duplicating dependencies to avoid conflicting dependencies”,

    Nobody is perfect, so it's important to keep an open mind about things, especially when one don't understand them, and especially² when one thinks they understand them as it's always possible to be wrong (unless they don't care about going through life as an ignorant asshole. Plenty of people thrive like that.)

    [–] [email protected] 1 points 2 days ago

    I understand it fine, and it's not just a packaging phenomonon, all sorts of software developers have stopped trying to have consensus on platform and instead 'just ship the box'. 99% of the time a python application will demand at least virtualenv. Golang, well, you are just going to staticly build (at least LTO means less unrelated stuff comes along for the ride). Of course docker style packaging is bring the whole distro. I'll give credit to snap and flatpak that at least allow packaging to have external dependency packages to mitigate it somewhat.

    [–] [email protected] 1 points 2 days ago

    i like novel implementations of these things, it's the reason why linux as it is today is so good, people were willing to try novel methods of package management, and the repo worked great.