this post was submitted on 10 Feb 2025
897 points (97.7% liked)

linuxmemes

22425 readers
3232 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.
  • 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
     

    Let the apologists have a field day in the comments.

    (page 2) 50 comments
    sorted by: hot top controversial new old
    [–] [email protected] 12 points 1 day ago (12 children)

    I think there should be a standard for config files, where it defines all of the options and possible values, so that an app can be made to modify them.

    load more comments (12 replies)
    [–] [email protected] 48 points 2 days ago (1 children)
    load more comments (1 replies)
    [–] [email protected] 42 points 2 days ago* (last edited 2 days ago) (1 children)
    [–] [email protected] 20 points 2 days ago (1 children)
    [–] [email protected] 21 points 2 days ago* (last edited 2 days ago) (5 children)

    Yeah, I've definitely grown to like TOML, especially after spending hours trying to edit a giant (nested) YAML file...

    I didn't realize the indentation in TOML was purely aesthetic.

    This

    [servers]
      [servers.alpha]
      ip = "10.0.0.1"
      dc = "eqdc10"
    
      [servers.beta]
      ip = "10.0.0.2"
      dc = "eqdc10"
    

    equals this

    [servers]
    [servers.alpha]
    ip = "10.0.0.1"
    dc = "eqdc10"
    
    [servers.beta]
    ip = "10.0.0.2"
    dc = "eqdc10"
    

    which equals this

    {
      "servers": {
        "alpha": {
          "ip": "10.0.0.1",
          "dc": "eqdc10"
        },
        "beta": {
          "ip": "10.0.0.2",
          "dc": "eqdc10"
        }
      }
    }
    
    load more comments (5 replies)
    [–] [email protected] 12 points 2 days ago* (last edited 1 day ago) (2 children)

    This could be paraphrased as "GUI for the GUI settings, non-GUI for the non-GUI settings." It's not surprising to me that parts of Linux that run on systems that don't have GUIs do not have GUI settings. I understand the frustration, but building those is more work, and more things that can break, go out of date, etc..

    What if Linux presented its config files in an app like regedit? Would that be easier? I doubt it. But with complicated data structures, making a first-class app just to edit a specific text file or set of files on disk is a very low ROI for engineering hours.

    load more comments (2 replies)
    [–] [email protected] 26 points 2 days ago (1 children)

    Yeah, some distros have GUIs for system settings, like openSUSE and Mageia, but advanced users will often even take that as a reason to not use those distros, because they themselves don't need that on their system. And because not many advanced users use these distros, it's hard to recommend them for noobs, because it makes it more difficult to find help resources. Kind of a stupid situation...

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

    "I open bottlecaps with my mouth, so i don't go to house where they have bottle openers."

    [–] [email protected] 7 points 1 day ago (1 children)

    Since suggestions in the comments are just words of apologists, do you have a proposal for a solution, or is this just a rant post?

    All I’m getting right now is a vague idea of some Master GUI that resembles the cockpit of a commercial jet that no β€œaverage user” is ever going to try and decipher, anyway.

    load more comments (1 replies)
    [–] [email protected] 18 points 2 days ago (5 children)

    Nowdays Windows horse has the same head but it basically never even had a butt at all (or third party butts at some point).

    load more comments (5 replies)
    [–] [email protected] 5 points 1 day ago* (last edited 1 day ago) (4 children)

    NixOS has the potential to do really well here. The Nix language has a rich enough type system to generate GUI forms for every field, and there are several projects being worked on that allow editing NixOS options from a GUI. They're still very janky, but it's definitely possible to get to a point where a layperson could operate them without breaking their system.

    load more comments (4 replies)
    [–] [email protected] 10 points 2 days ago

    reminds me of the one time I tried to configure a proxy on fedora KDE and then realizing most apps don't even use the inbuilt proxy settings and there are three separate ways to configure it that are only accessable via the terminal and it is pain

    [–] [email protected] 19 points 2 days ago (2 children)

    I'd just like one standard for all config files. Yaml, json, whatever...let's just choose something and standardize.

    I used to dislike editing text config files but once you have one written you've got a template for the future. So long as the documentation is throughly written it's not too bad to follow.

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

    Nix intensifies

    load more comments (1 replies)
    [–] __nobodynowhere 5 points 1 day ago* (last edited 1 day ago) (1 children)

    Desktop Environments are decoupled from the underlying system. It makes switching DEs very easy but integration sucks.

    I needed to flush dns on my Ubuntu machine. I googled it found a command for an older version. But of course the underlying stuff changed since then and that command doesn't exist anymore.

    The command to flush dns on Windows has been the same for decades. On Linux half the stuff I learn is going to be obsolete in a couple of years and that knowledge can't be carried over to other Distros because they do it differently.

    I also had to manually build and install a driver for a very common realtek wifi chipset that is not even new.

    load more comments (1 replies)
    [–] [email protected] 16 points 2 days ago

    You ever try to put together a GUI? I absolutely get why they look like crap! Although I have been having fun playing around with egui.

    load more comments
    view more: β€Ή prev next β€Ί