this post was submitted on 13 Feb 2025
931 points (94.6% liked)
linuxmemes
22766 readers
405 users here now
Hint: :q!
Sister communities:
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
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.
- 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, <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. Β
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
view the rest of the comments
A centralized place to store settings (e.g. the registery) isn't a bad idea in and of itself.
That.
I'll add that a lot of the issues people have with the registry have less to do with the registry itself (it's just -- A database of settings. Nothing shocking about that) and a lot to do with Windows' philosophy and the problems that creates.
Like yes, the registry of a computer that has been running windows for a few years is a bloated mess which creates a bunch of problems of its own -- But that's not in and of itself because the registry is a centralised binary database.
Rather it is because -- Well. Microsoft. Tech corporations in general. Want computers to behave like magic boxes. Not machines you have to learn to operate. This means that whenever you install something or modify something on windows, you are left in the dark as to a lot of the stuff going on under the hood. Windows error messages are very obscure and nonspecific. When you install something, do you know what it has added to your registry? What dlls it has dropped around your machine? And with so many third party programmes and utilities dropping into the system, that shit builds up, and not even an experienced user will fully know what has built up unless they've been making a deliberate effort to keep track.
Compare that to Linux, which is made by nerds FOR nerds... And so everything is thoroughly documented. With the general unspoken understanding that a. You will sooner or later go under the hood and mess about in there; and b. If something fucks up, whether it is directly your fault or not, you're the one who will have to fix it, so here's ALL the receipts on how shit works so you CAN do that.
I'd want a registry that was compartmentalized meaning each app gets an area to store its own configuration and the apps can only modify their own settings (without root permissions).
Apps should never be expected to modify system settings directly but only through system calls.
Some Linux packages achieve this kind of behavior by adding an additional user which owns their configuration directories. That always felt hacky to me.