this post was submitted on 03 Aug 2026
145 points (90.1% liked)

linuxmemes

32356 readers
1292 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
     

    Made this on a whim, while commenting on that other recent Arch related post... the tamagochi one.

    It's been years since I actually used Arch. I hear much has changed (~ like it has an easy installer now?). Does it still itch to faceplant from time to time, needing rescue or abandon? Does Arch still faceplant itself?

    How long have you managed to keep an arch going? How many times needing rescued back to being bootable in that duration?

    [And would have posted this from that account, but that lemmy.wtf instance is tempramental, currently 504ing again. Glad I recently made this alt account so I can still post this and carry on with life.]

    you are viewing a single comment's thread
    view the rest of the comments
    [–] devfuuu@lemmy.world 5 points 2 days ago* (last edited 2 days ago) (1 children)

    Been on arch on multiple computers for at least 15 years. Personal and work computers. It just works. Although it's for competent users and that might be the issue most people have with it.

    I've destroyed whole system by accidentally deleting the var folder and still recovered it without backups.

    I've also had a computer without updates turned off for more than a year and it also still worked just fine when updating and reading some quick things on the news page.

    I've used many ubuntus on work laptops and other distros before arch and they just would eventually break or get into a Frankstein state that there was no way out without a full clean reinstall. Never again.

    [–] hirihit640@sh.itjust.works 1 points 17 hours ago* (last edited 17 hours ago) (1 children)

    The "Frankenstein state" is why nowadays I avoid traditional distros, Arch included. Traditional distros use something that programmers call the "imperative model". Basically, it means that you define tasks as a sequence of steps. But these steps have to account for infinitely many scenarios.

    Every new version of a package adds some files, deletes some files, and runs some commands. Imagine you left your PC off for a month and now you need to upgrade a package from version 1 to version 10. The system has to figure out which files from version 1 can be kept, which files need to be installed from version 2, which files from version 3, etc, and then how to combine the commands from each version. Maybe it messes up and forgets to clean up a file or two. This might not be an issue now but over time these inconsistencies accumulate and the system diverges so far from mainstream that it breaks.

    The modern atomic distros like Bazzite, use a model called the "declarative model". Instead of defining sequences of steps, you define the end goal. The system ensures that the final state matches the goal. Every update, is equivalent to re-installing the system from scratch (with clever optimizations so you don't actually need to re-download the whole system). Everything is consistent with the mainstream, and stays consistent, all the time. You can just turn on automatic updates and forget about it. No need to read news or release notes or PKGBUILD files. It is extremely robust and reliable.

    This declarative model is what major cloud infrastructure has been moving towards in the past 20 years. Docker, Terraform, Gitops, IaC, etc. This is why the modern distros like Bazzite like to call themselves "cloud native" distros. These distros follow the same update model as major cloud infra.

    [–] andho@lemmy.zip 1 points 10 hours ago

    Don't forget CoreOS and MicroOS.