Spyke
ani.social

What people expect:

✅Fix my box

❎Fuck my shit up

What we would get: System Kernel Interface

🔳 Regex Recursion

🔳 Kernel Language (Internal) [Dropdown: en-us, Dvorak, binary, Klingon, non-binary (Borg analog), Esperanto]

🔳 Ignore LPT on fire

🔳 Memory hole on sysctl

🔳 Mansplain man(8)

90

Yeah some people seem to have this expectation that there should just magically be a button to unbreak the PC. They talk about their personal pain points when using Linux as if there's a conspiracy of devs to hide the unbreak buttons for the sake of elitism, but that... just isn't a thing? If it was that easy to fix an issue, you probably wouldn't need to fix it because the system would already come unbroken by default. I sympathize with everyone's Bluetooth configuration woes but mostly it's a pain in the ass because Bluetooth, in general, is a pain in the ass, not because of elitist devs (who I should mention are doing this in their free time for no pay. There's almost no money in desktop Linux, unlike in servers).

2
lemmy.ml

Windows users are used to everything being so locked down that it's virtually impossible to mess up your system... lots of this stuff is in config files because exposing it for everyday users would be asking for people to completely brick their workflow.

73
cmnyboreply
discuss.tchncs.de

If you put every option in a GUI, there would be so much stuff that nobody could find anything.

50
lordnikonreply
lemmy.world

I think you just discribed windows I know my head hurts looking at GPOs.

34
lemm.ee

No Windows put everything in a GUI, then added a second GUI that didn’t quite have all the functionality of the first one so kept both around, then despite the second GUI existing for nearly 10 years it still couldn’t do everything the first one could and then they completely redesigned it rather than just introducing all the functionality from the first GUI, but they removed some of the functionality of the second GUI from the first GUI so now both GUIs are incomplete and full of functions that just link to the other GUI

43
GoumLeChatreply
jlai.lu

That's basically Sharepoint. You better bookmark the three different Web pages because they have different options you won't find on the two other. But also just finding and remembering those three Web pages is a Pita. I or better yet, never have to manage Sharepoint pages. This stuff is worse than printers.

19

Oh god don’t get me started on SharePoint, I only recently discovered that disabling permission inheritance doesn’t actually disable permission inheritance…

10
lemmy.zip

As kludgey as they are, though, I do wish there was a good replacement for GPOs in Linux

2
lemmy.zip

As cool as that is, I'm only seeing authentication and rights management, which have little to do with what GPOs do

2

That's not just limited, that's an incredibly tiny bit of user rights assignments, which is an incredibly tiny part of group policy and does nothing to configure the system... It's useful, but not really what I'm talking about

1

That's why you put it in 3, with no rhyme or reason for which goes where

14
Natanoxreply
discuss.tchncs.de

Now we got it only in config files where we can't find anything. Also don't you put a single wrong character in there, it could break everything.

Well-made GUIs can even prevent disaster by exposing settings in a diggestable way and making sure entries are properly edited. Good UI/UX conveys functionality through form and can be navigated intuitively.

To make settings inaccessible on purpose or even alienate people deemed "too stupid" for them is called Tech Paternalism, and it fucking sucks.

2

To make settings inaccessible on purpose or even alienate people deemed "too stupid" for them is called Tech Paternalism, and it fucking sucks.

You're referring to Windows Registry right?

9

A well-documented config file is like the exact opposite of "tech paternalism".

5

The Linux equivilent of this is atomic/immutable distros (SteamOS and Android being the most popular examples, but Fedora also has one that's fairly popular).

1
lemmy.dbzer0.com

I don't care if settings are done by GUI or terminal, I just want clear and concise descriptions for specific settings and not a condescending "go read the man pages you fucking noob". I've been fucking with Linux for over a decade now; a lack of clear documentation is not my problem, and at this point is unacceptable.

51

Especially when the settings are named the same/similar as other apps but do different things

Just fucking comment line quickly what the fucking thing does you dickheads, or use your settings page for more than 3 things and stop hiding everything else in your fucking .YAML (also Stop using .YAML)

24

YAML is good for scripting services (like docker stacks), but otherwise I agree, stop using it for absolutely everything.

2

I actually looked into it, although I didn't like very much that the config file is actually a program and an odd language. They should have used something commonplace like JSON

2
stetechreply
lemmy.world

At this point, TOML is my favorite since it basically amounts to an attempt at standardizing the .ini/.conf style of config “language”/files. It’s still simple enough, but pretty powerful, and was seemingly good for the Rust and Python projects to be convinced to choose it as a default…

1
Darkenfolkreply
dormi.zone

I've been fucking with Linux for over a decade now; a lack of clear documentation is not my problem, and at this point is unacceptable.

Well seems to me that the lack of clear documentation is in fact your problem.

I mean, fucking around for a decade?!

: P

3
renzevreply
lemmy.world

go read the man pages you fucking noob

And when you actually go and read the man page, it says some shit like "Some of these options are not fully documented. For an accurate description of their functionality, consult the source code"

3
paequ2reply
lemmy.today

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"
    }
  }
}
21
lemm.ee

Once the file is big enough wouldn't it be better to convert it to json before editing, then converting it back?

Let the computer deal with indents and all that stuff.

5
Epherareply
lemmy.ml

I love this comment. JSON is by far the format that cares the least about being human-readable or -writable, but you're seriously proposing writing it rather than YAML. And I kind of don't even really disagree. But a big problem with that strategy is that you won't find documentation for how to write the configuration in JSON.

3
lemm.ee

I disagree that json is not human writable. JSON is perfectly writable since it has explicit visible separations between elements.

It might look ugly but it's perfectly readable and writeable.

Granted, I always read json after parsing it with an auto formatter. Maybe that's why people say that json is difficult to read? It's true that unformatted json (minified) is way worse than yaml but no one in their right mind would not format the json, specially when it's natively supported by most code editors.

BTW, about documentation, post formatting json looks very much like a yaml, all yaml docs can be converted to json instructions if you think a little bit.

2

Oh, that is actually the part I do agree with. I don't think everyone will, but I do actually think JSON is easier to read and write (correctly) than YAML. I specifically wrote that JSON cares the least about that, because it was designed to just serialize JavaScript objects into strings and back. As far as its original purpose is concerned, no one would ever need to hand-edit JSON. Which is also why it doesn't support comments (which is still somewhat of a dealbreaker for a configuration language, although I guess for your proposed workaround, one could potentially use a JSON flavor which supports comments; potentially, you can even write your JSON in the YAML file with comments directly and then not convert it, since YAML is a superset of JSON).

As for documentation, yeah, it is possible to convert, but it makes it more annoying, particularly also if you then can't easily re-use configs in another project. And if you're working in a team, having to explain to all your team members, how they can convert the official documentation, is also not really acceptable...

1

Because ... well ... wait, not a bad idea. Although, this would get rid of comments. Which in my case, I didn't have too many, so I could have manually added them back.

1
feddit.org

You should have done the 2nd half in ascii art because terminal ;)

38
lemmynsfw.com

Plasma 6 settings GUI more capable than windows settings idk wym. Only thing I've had to edit in the terminal in the last several months has been automount on a hard drive.

32
Natanoxreply
discuss.tchncs.de

Do they support stuff like managing the bootloader or systemd services by now? So far the only thing I ever saw going that deep was OpenSuse's YaST Settings Suite.

17

They aren't supposed to have every setting tho. It's mainly focused for average user, power users can figure it out and most prefer CLI anyway. Having too many settings can be intimidating for new users.

3

Idk man i just keep my system up to date and call it good for the most part. I COULD dive into low level system stuff but I've rarely has a reason to. I do my tinkering in Godot, or off the computer.

Point stands, better interface and more functionality than Windows' hot mess.

Should note that yes, system stuff like display, fonts, all kinds of other stuff. But super users will always default to command line and there's always a little issue here and there after certain updates to tinker with.

2

Only thing I’ve had to edit in the terminal in the last several months has been automount on a hard drive.

I just use gnome disks for that. Tbh, that's the only thing I use gnome disks for.

3
lemmy.ml

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...

26

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

13

SUSE/openSUSE are the only ones that have it figured out. It requires a lot of polish, but it's the only distro that seems to really care about a deeper system configuration through GUI, and that's really appreciated.

15
juipeltjereply
lemmy.world

Meanwhile i'm using my own silly bash script to symlink all my dotfiles from my repo 🗿

4
stetechreply
lemmy.world

Yeah, and then you start to configure any edge case, and then you’re basically already at the point where chezmoi would be useful. Lol, I’ve been there

4

Mine uses special folders for 'all' or 'user', and different folders for symlinking entire folders or single files so the scripts can tell the difference. Had no idea this existed. Thanks!

3
juipeltjereply
lemmy.world

Could you give an example of that? Cause i'm kinda curious. I have used home manager before when i was using nixos, but when i left i went back to using my script. It was kinda annoying to me how home manager was much slower.

2

Server (Linux) and personal machine (non-Linux Macbook) with the same general shell config (aliases etc.), but different applications/CLI tools installed.

No idea how it compares against the Nix paradigms, but I like the ease of use in setting up a new machine. It’ll copy all files to their intended destinations and will be able to fill in credentials from templates using e.g. rbw (third-party Bitwarden, i.e. password manager, CLI tool), meaning, once all fields have been templated, you can make it public without even worrying about leaking a personal email address (I use different ones for git vs. other accounts vs. even other stuff).

2
lemmy.ml

It's why I'm so furious about Linux in general and how every god damn intent to change almost any setting begins with "open Terminal...". I don't want to use the damn Terminal. It's 2025 now, put the god damn basic ass settings into control panel so I can click it without first spending half an hour to find a long noodle of commands for Terminal that I don't even understand, paste it in and hope for the best.

Like, I had issues with Bluetooth module in my laptop and I wanted it disabled so my BT USB dongle is main. In Windows I'd just go to Device manager and disable that device. Done. On Linux I spent hours diging on how to disable BT module and weed out all the bullshit on how to disable the function itself because I need it, just not from the fauly module. Then I spent asking on Reddit where someone finally posted a working Terminal command that I had to save into config file using Terminal because file manager is to stupid to save it into system area by just asking me if I want it there or not. I now have a folder with config file and instructions on what stupid ass copy command for Terminal I need to use to copy the config file where it needs to be.

Just so much unnecessary bullshit for something that could be done in literal 5 clicks at worst if the damn option was in GUI to disable single device on the system. Also fun fact, Linux has a "wireless devices" tool, command line one and it uses device ID to apply it and the fucking ID changes every time for the device so you can't make a permanent setting. I kid you not. I've never seen anything more idiotic.

20
lemmy.world

How ungrateful! Do it yourself? It only takes learning how to program. Thats like... a 45 minutes search. 80 if you want to learn how to program an OS from scratch.

7

Everything I know about bash I learned by spending a decade copy-pasting random commands I found online into my terminal.

It's really that easy. You'll be sudo apt update-ing with the best of them in no time when you spend a decade copy pasting commands you found on the web to your terminal.

6
droansreply
midwest.social

And, in the meantime, you'll only destroy your OS maybe a few dozen times!

6

True story - I keep blank audio CDs around because my cars have CD players. The fact that I still burn CDs is another story, but Debian is still small enough to fit on a CD-ROM. So I keep a backup of Debian 12 on a CD-ROM so I don't have to lose a flash drive to that task. Very convenient. And I've broken my system a few times tinkering. I'm not even sure how. But hey, I love to go fast and break things. I probably made an edit to a file long ago and forgot about it and now it borked stuff. It happens.

At this stage, I've got it down pretty good. If I break my OS, I can plop in my boot CD, use rescue mode to back my home folder up to a flash drive and wipe the system. I keep lots of other things on extra HDDs so all I ever wipe is my boot SSD. I have an Nvidia GPU so before I log in for the first time, I just get back into rescue mode and set up my root password, user account and password, reclaim my home folder, change ownership to the new account, set up fstab, and install drivers and programs before ever logging in as my user for the first time - all from the console.

As for data loss, I haven't lost any. I have never needed to wipe my hard drives so as long as my home folder is intact, retrieving that is easy enough. I don't keep just one copy of irreplaceable files, either. While my phone does back up my stuff to Google Drive, I keep additional copies of my favorite pictures and videos on DVDs. Three copies, on at least two different media, one of them off-site.

Breaking your OS is really not that big of a deal once you know how to retrieve stuff without it. You don't even need CDs lol The boot CD is just for convenience. You can bork the system on a computer with just one storage device and as long as you have two flash drives, you can get it all back pretty easy.

But I'm only here after years of experience in bash. If I went back ten years with a busted laptop and told my 22 year old self to use lsblk, mount, and cp to copy the home directory to a removable device all in command line, younger me would probably cry lol

2
Nalivaireply
lemmy.world

You don't need to "learn how to program", whatever the fuck you mean by that, to interface with texting terminal. We're interfacing via text right now and you seem to do it just fine, you don't seem to need a selection of colourful boxes to understand what I am saying

2
lemmy.world

You're asking average people to learn a new language so they can install software (thats not on the stores) or to do some beyond basic configs. Why should they bother learning bash when they could just use windows and learn somethint else with that time?

How many times did i find a post telling me to create a weirdly named txt just to change my touchpad settings? Its not trustworthy for noobs. How is a noob suposed to know if a command on a tutorial is safe or not if many linux distros let you destroy them via rm -fr? Are they supposed to search each and every command before they use them? Im sure lots of people rightfully reject using the terminal (and therefore linux) for this reason.

2

How a noob supposed to know anything? By learning. You pretend that learning how to click through 5 confusing sumbenues is easy as fuck, but learning how to read basic ass words is an esoteric knowledge that only wisards can learn.
You pretend that nobody can comprehend that apt-get install steam will install steam, but searching through the website, downloading an installer, looking through your system for a file, executing it, and following through twelve steps of a wisard is suddenly magically a knowledge that everyone just grasps.
You pretend that "find this file, find WhateverBullshit=1 and change 1 to 0" is incomprehensible and requires a whole new language to understand, but "click this menu, open this submenu, scroll untill you find this subsection of subsection, look for the menu that opens a window of menus and then look for a tickbox that they actually moved three versions ago" is so simple you don't actually need to even think about.
But as an experienced system administrator, I can tell you from an experience, if the person doesn't want to learn, or can't, they will not, and it's not because they're intimidated by the concept of letters, but because the whole idea of learning a skill is confusing or intimidating. When people aren't in the mood they will look at the window telling them to press the only button on the screen, and they will call for help.
And if they want to know their instrument, they will learn whatever they need, and since reading is one of the fundamental skills we have in the modern society, they will learn how to read configs and write commands without the problems you envision.

1
Phoenixzreply
lemmy.ca

KDE has an enormous system settings GUI.

Having said that, I use the console for like 90% of tasks. Basically I use either the GUI browser, an editor (I'm a dev) and the console through yakuake.

I use the console because it's way WAY more efficient to get shit done. What teo windows admin do in 30 minutes I do in 30 seconds, and that was an actual event where we had to change DNS configurations inna large amount of customer servers.

Command console is not old tech, it's efficient tech.

Having said that, most normal users shouldn't have or need to access the console either and for most of the time, this rings true with Linux now. Yeah, there are few exceptions here and there, but then again, windows too requires these senslrss Registry settings, or sometimes even command line actions as well

6
Natanoxreply
discuss.tchncs.de

This is just not true. The average Windows user never has to open the registry, only devs and tinkerers have to. Neither a shell.

For Windows admins do in 30 minutes and you in 30 seconds takes a normal user either 30 minutes ib Linux or, way too often, 30 hours because the random command in the internet didn't work, did work but had unforeseen consequences (way worse and way too often) or outright broke their system.

Even KDE lacks settings, and even if they ARE there the community is so god damn "terminalistic" that you'll barely find the correct answer for the GUI, just a bunch of CLI commands that will age like milk and cause future people who look for help to accidentally break something.

NOBODY should be forced to enter a superuser command they can't understand to achieve a goal they very well do. The community is still fighting against the users' ability to open a file browser or text editor as superuser WITHOUT going through the command line. It sucks, and normal users constantly get alienated by the lack of these fundamental things on a system that pretends to give them full control.

Full control it does give; after 2 years of painfully learning the command line and its bells and whistles. And this sucks.

5

I’m sure it’s different in many distros, but in Mint the ability to open a file browser as root is in the right click menu.

3
ludreply

What teo windows admin do in 30 minutes I do in 30 seconds

You know that pretty much everything in Windows can be done with powershell, right? Just a few and very specific things need to be done using older command line tools, or extremely rarely using a GUI.

It's trivial to write a script that changes the DNS configuration on every server for example. It's even easy to parallelize it.

You pretty much only need something like this.

$Servers = "server01", "server02", "server03"

$Servers | ForEach-Object { Invoke-Command -Computername $_ -Scriptblock { Set-DnsClientServerAddress -InterfaceIndex 12 -ServerAddresses ("10.0.0.1","10.0.0.2") }}

I can't guarantee that it will run, since I wrote it on my phone (hence formatting), but it wouldn't be far off. You could also do it without pipes using something like 'foreach $server in $servers' but that's harder to type on a phone and I prefer pipes.

3
kreskinreply
lemmy.world

I don't want to use the damn Terminal.

Unfortunately the people who code prefer not to use guis if they can help it.

5

This, so much.

I genuinely could have said something very similar but in reverse.

I don't want to use a GUI that does stuff that I don't understand behind my back. Terminal is simple. You read the man, the output, the return value, etc and you just know what happened.

imhi GUIs are a pita proportionally to how complex what you're trying to do is.

2

I don't mind using the terminal, but how the fuck am I going to remember something like kwriteconfig6 --file startkderc --group General --key systemdBoot false? (In fact, there aren't even man pages for that command). Like the scribbles of a mad man I've had to put down commands like that in a sort of personal instructions manual, because ain't no way I'll remember these commands by heart.
And you often end up just saving the most used commands as aliases or functions in the .bashrc meaning you don't retain the syntax for the commands you use. Well, maybe I'm a unique case of fish memory.. The thing about humans is that we greatly rely on our vision, and having GUI's to show what's possible greatly improve ones understanding of how to manage it going forward.

3
Oinksreply
lemmy.blahaj.zone

kwriteconfig6 is barely documented because you're not really supposed to use it. All of the settings that users are expected to change are in the nice settings app that Plasma ships with. Using kwriteconfig (or equivalently a dconf editor on GNOME) is like editing the registry on Windows; you are implicitly opting into more power, out of most guardrails and into potential breakage. The UX being a bit questionable (though honestly it's really not as bad as you're saying, it does exactly what it sounds like it will do?) is to a degree intentional, because you're not supposed to be using this unless you know what you are doing.

3

I keep all the little snippets like that in an org-mode file, and write notes about what I was doing and why, and org-babel can even execute the code right there in the document.

and it's not even running a terminal!!

3

This is why GUI exists. So you don't need to memorize idiotic and long commands.

2
Darrenreply
sopuli.xyz

I have a similar rant with Docker.

On macOS there's a Docker app. You can use it to install stuff, see what it's up to, restart it and whatnot. On Linux you have to remember what commands you have to use in Terminal.

Why?!

There are loads of us out here who would appreciate a more user friendly way to use FOSS, but we're made to feel like fuckin noobs because we don't want to spend ages typing in commands when we could just press a couple of fucking buttons.

Anyway, apart from that I've been enjoying my adventures in Linux.

0
JackbyDevreply
programming.dev

You're probably talking about Docker Desktop. It may not be on Linux (or at least your distro or whatever) because it's not actually FLOSS. If you want to use Docker with a GUI I've had success with Rancher Desktop which is made by SUSE and is FLOSS. It's still Docker (unlike podman which is not technically Docker), but it has a GUI for some stuff too.

I tried installing Docker Desktop at work and realized the license doesn't actually allow that without paying. It was weirdly difficult to install Docker by itself on Mac so that led me to finding Rancher Desktop.

6
ludreply

Yeah, the Docker desktop license is crazy. Pretty sure it was changed recently too.

2
renzevreply
lemmy.world

This is such a stupid take. Gui obscures the thing that you want to do behind endless buttons and menus and some bullshit that some self-proclaimed "user experience engineer" thought would be "intuitive". With cli it's like you're talking directly to the computer. Want to stop the networking service? service networking stop. Couldn't be simpler!

Also fun fact, Linux has a “wireless devices” tool, command line one and it uses device ID to apply it and the fucking ID changes every time for the device so you can’t make a permanent setting.

Are you talking about rfkill? Strange, for me the ID's don't change. But even if they do for you, what's stopping you from getting the ID just by grepping for the device name? Something like rfkill list | grep YOUR_DEVICE_NAME | cut -d ':' -f 1 | xargs rfkill block.

0
RejZoRreply
lemmy.ml

Calls it stupid take, proceeds to give me most absurd noodle of a commandline for something that could simply be a Enable/Disable button on a device list panel that every idiot with no prior knowledge of Linux, CLI or memorized command could do it. I think proved my point once again.

1
renzevreply
lemmy.world

It would take you less time to put together that one-liner than to find the correct button in an unfamiliar gui. How exactly does that prove your point?

1
RejZoRreply
lemmy.ml

BS, I looked online for hours and waited for replies on reddit and no one gave me this line. So, no, I'd in fact do it via GUI in minutes where it took me hours for some backwards config that doesn't look anything like this that made me do what I wanted. With extra steps to copy that stupid file into system folder, of course via stupid Terminal because I couldn't do it through file manager in any way. The level of stupid Linux has to configure trivial things is just astounding.

And what's weird is how Linux purists always whine about it. Like, I don't care, keep using your stupid Terminal, just give me damn GUI for this basic shit. I don't want to waste time and memorize idiotic noodles of commands to do trivial shit. No one is taking away any of the stupidity you love, just give ME the choice. Instead the only choice is use of stupid CLI. Ugh.

Also it's not "unfamiliar" GUI. It's called practical deduction. If I need to do this and this I already know I might need to look under this and that category in settings or just type rough related words in search and it would show me the setting. If whoever makes GUI isn't a complete moron, it would be easy to find. Good luck with any of that with CLI where you need to input exact command from start. Your logic just makes no sense.

0
renzevreply
lemmy.world

I don’t want to waste time and memorize idiotic noodles of commands to do trivial shit.

Also it’s not “unfamiliar” GUI. It’s called practical deduction.

Can you not see how the two arguments you're making are completely contradictory and self-defeating? Nobody is asking you to memorize "noodles of commands". What, do you think we all have little books full of shell one-liners for every task imaginable? You just have to know a few basics: The pipe redirects data, cut splits lines of text, xargs builds up arguments raw text, etc. Put them together in whatever way you wish to accomplish the task at hand. It's -- exactly as you say -- practical deduction.

1

You're really not making the case in your favor with this argument. So, now I have to memorize even more dumb commands. What in the fuck? You really have no clue about GUI, do you? Youbdon't have to memorize ANYTHING, just have general idea in which category of settings to go. And that's it.

1
real.lemmy.fan

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.

19
lemm.ee

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

19
vinylreply
lemmy.world

Im usually fine with it but at times whenever I want to enable some obscure setting that isn't in the normal control panel, there's at least 3 different gui that kind of accomplish the same task but later on has different side effects depending whether you edited via registry or local group policy

7
lemm.ee

Yeah, when local group policy is essentially needed for a normal home PC usage you know you have a great Windows system (and I don't even have experience with 11, yet).

4
Darrenreply
sopuli.xyz

And a bunch of ads where its balls would be.

2

The ballsack is prime ad real estate!!

Everyone looks at it & wants to press it - balls don't lie, the ads must be trustworthy!

2

This makes sense, within reason. Limiting the visibility of low level system settings and statistics is good for the normal user’s experience. That is not just to keep them from breaking their system, but it also makes the commonly used settings easier to navigate and use.

I don’t say this in a gatekeeping way either. I am a developer and old computer nerd who has a terminal open pretty much all the time. But I also run Mint and I use the GUI for all kinds of stuff. If I may stretch to make a metaphor, the primary user-friendly UI from the driver’s seat of my car doesn’t have indicators or controls for all kinds of things I care about, but they are things I don’t need to do every day in the middle of a drive. I can do something out of the ordinary to get to them when the need arises.

The nice thing about Linux is that in the GUI these things are merely hidden. They aren’t locked down and denied access entirely like you might get with a commercial OS.

The worthwhile discussion/argument IMO is just where best to draw that line. I personally don’t have strong opinions on the computer side because I am comfortable with CLI and text files. My gut feel is that more GUI is good, but my suspicion is that actual “normie” users want simple. To them the OS is just the screen that holds the icons for their apps, like a smart phone. It is not a gargantuan tree of settings they can peruse like I might.

Funny though, I DO have a strong opinion in the case of my car metaphor. I currently drive an old economy car, and it doesn’t have a coolant temperature gauge. There’s just a warning light for when the coolant is already too hot or is still cold and warming up. The lack of the gauge doesn’t affect the performance of the car and it has not ruined my day in over a decade of ownership, but I’m a bit of a car guy and an engineer to boot, so I want more information like you might see in a truck or sports car.

That’s another nice thing about the open nature of Linux. There isn’t one official setup that everybody gets out of the box, which can be confusing, but it can certainly be made to fit many different people’s needs.

18
lemmy.world

I've been using linix for like 18 years and I still prefer GUI over CLI hands down. Make things easy by letting me click on some nicely explained buttons.

16

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.

16
Aidoreply
lemmy.world

No, there's a couple rogue advanced dialogues but the control panel's finally been well replaced

4

Ehhhh, you can still get in there. Also there are several control panel only functions. It's been pretty frustrating how they've incremented change. I feel like they should have gone menu by menu in control panel and just built their new settings application page by page and then just pushed one big control panel alternative. Then they could phase the old one out or leave it in for legacy users or whatever. But the new settings and how that menu changes every few months is frustrating as hell.

6
lemmy.world

I always viewed YaST as SMIT(ty) for linux. Haven't looked at suse in forever, though.

2

https://en.wikipedia.org/wiki/System_Management_Interface_Tool

It's a menu driven system management tool for IBM's AIX unix variant. Oddly enough, even Wikipedia shows the relationship from SMIT to YaST. Instead of just smile and nod, next time make up something about "smitty print" (damn near everything was under the "print submenu", ostensibly because you were printing out the config to screen), and look like you are a grizzled veteran of corporate unix from the days of yore.

:-)

2
lemmy.world

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.

13
Natanoxreply
discuss.tchncs.de

Then at least give users the ability to edit said text files with a text editor… but the community fights that as well. 🙄 The only distro I ever saw that enabled users to open a file browser and, through that, a text editor as root to edit system files was Mint. KDE had it for a short while before they patched it out again as far as I know (last time I checked Dolphin outright refused to start with root privileges).

It's not like there weren't ways to make it easier with little investment. Some elitists just managed to suppress even those efforts for decades.

-1

Kde allows you to edit files with elevated permissions; use Kate for that. Open any system file in Kate and it will ask you for your password when you'll try to save it.

5
lemmy.world

12 years ago maybe, plasma made a lot of improvements since then

12

There really aren't any simple settings for grub that need a GUI and honestly the systemd service CLI for enabling starting and disabling is pretty damn easy

6

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.

12
droansreply
midwest.social

There are existing standards. The issue is that there are too many different standards and some programs will choose to make their conf files half standardized, half unique.

There's INI, YAML, JSON, XML, TOML, etc.

Honestly, the Linux team needs to just choose one of these formats, declare it the gold standard, and slowly migrate the config files for most core components over to it. By declaring a standard, you'll eventually get the developers of most major third-party tools and components to eventually migrate.

5
lemm.ee

Thats not exactly what I meant, I meant a system where you would have a file that defines all the options for an app, and their possible values, so a gui or program could be made to edit them.

6
Epherareply
lemmy.ml

What comes sort of close, is that you can define so-called "schemas", at least for JSON, TOML, YAML and XML. Here's what that might look like for JSON: https://json-schema.org/learn/getting-started-step-by-step

I don't know, if you can actually generate a GUI from such a schema, though. They're intended for validating existing data, so I don't know, if they give you enough data to work with to actually provide a GUI. For example, you don't really have a human-readable name in these. The fields are rather called e.g. "productName".

3

Yeah, I am aware of schemas, I meant something where you would have, for example, a conf.definition.json file:

{
    screenResolution: {
             definition: "What resolution the screen should be",
             options: [ 
                 "1920x1080",
                  "720x470"
              ]
     }
}

So then, a settings app could control settings for other programs, like apple does, by checking this file, and editing the configuration file based on it.

3

Schemas are a nightmare to work with, and are totally unreadable

2
droansreply
midwest.social

Yeah something like that should be doable but it would require that programs provide a schema and the OS to have a way for the programs to "announce" themselves so it can be aware of the configuration files and the schema.

I'm sure some project could create a GUI that could cover the most common applications, though.

It's always fun trying to set up a program, learning the config syntax, running it, having it fail, and then spending an hour debugging before you realize it never even read your config changes because you were supposed to use one of the other half dozen conf files it has spread all across your drive. Is it under /etc/, /usr/local/etc/, /opt/, or your home directory?

2

I was thinking, they would put the definitions in a specific directory, like if its installed locally, ~/.config/definitions or if installed globally /etc/definitions and then any settings apps would search for those.

2

It's not about what serialization format, it's about what possible values there are for each field.

1

Any modern Linux distro viable for the average user uses systemd, and there ain't many different bootloaders being used by big distros either (almost always either Grub or systemd-boot, rarely Efistub). Likewise it's clear for years that Wayland is the future (not to mention this problem persists for over 2 decades now).

I don't see a problem with lack of standardized config files, rather a lack of interest by the rather tech-conservative part of the Linux community (who by now often have a lot to say in development circles).

3

Here's one:

Audio jacks. I have a 5.1 system, and to use it properly I have to install HDAJackRetask. You can't just specify 5.1 surround sound from the distro's standard audio settings menu.

11
Natanoxreply
discuss.tchncs.de

Pavuctl still is kind of mandatory to have with most DEs (you should be able to set the proper audio profile in it for 5.1?). Amusingly even on Pipewire systems.

Especially weird to see on Gnome. Audio Settings are rather meh, you still can't even set how the background is displayed since Gnome 3 either (centered, stretched, fit etc. - unless you know about the "optimizations" app) …but look at our new "Wellbeing" feature! 🦶

5
Lolseasreply
lemmy.world

Hi. Are you referring to the "optimizations" app, gnome-tweaks ?

1

Another is fstab. You'll often be told to go edit that by hand, often in the terminal. Adding a drive to an existing system and mounting it as part of the file system is a task an ordinary computer user would want to do.

I'm thinking about a gamer switching to Linux, and then saying something like "I wanna hook up my 5.1 speakers" or "I'm gonna buy a new SSD and add it to my existing system so I have room for more games."

I'm not a proponent of making EVERYTHING a GUI setting because not even Microsoft does that but there are still some splintery edges in places people will actually touch that could use some sanding.

1
lemmy.world

Not entirely accurate since the majority of Linux system settings are in fact GUI settings, you forget the Linux under the hood is all pure text based meaning it's just GUI settings and worse GUI settings.

10
Natanoxreply
discuss.tchncs.de

Wait, do you argue that a terminal emulator is just another GUI but with a huge text box? 😅

26

So, if I switch the terminal output back to my dot matrix printer instead of my monitor, like back in the day, it's not graphical right?

10
lemmy.world

If we want to be technical even the terminal itself is a GUI just not a very interactive one, technically anything(most things) outside of the grub loader, bios and drives are part of the gui, I will concede that that is not a very useful definition but when dealing with edge cases like terminal emulators you would have to say it is indeed part of the gui at least technically.

2
highballreply
lemmy.world

It's called a terminal emulator because it emulates graphically what used to output to a printer at the console of a mainframe. Then you got CRT monitors. The mainframes like the PDP-10 would output to a printer or CRT monitor. This was your terminal. A printer writes the output from the mainframe 1 character at a time, left to right, top to bottom. The CRT monitors were made to do the same. Obviously before outputting to a printer or CRT monitor, the output would show on a set of lights on the console. If you watched them change enough, you would know where you were in your program as it ran (obviously something only doable because the opcodes were not running in parallel through super scalar pipelines in the Ghz). With printers and monitors, you could increase the amount of feedback you get from the running or exiting program and give input to the system via a keyboard.

So, the terminal is not "technically" a GUI. We do use a GUI to emulate a terminal which receives the actual terminal output from the system and then displays it for you. They are not the same thing at all. GUI is a paradigm for what you display on a Monitor for the user to interact with. Modern monitors are fast enough that they can and do work well with the GUI paradigm. You definitely wouldn't be sending GUI context to a printer.

6
lemmy.world

Technically a terminal is a physical crt or phosphate or whatever old kind of monitor they had back then, the dot matrix printer was a tty or teletype system, the terminal emulator is emulating the the old dumb analog monitor on top of the digital os not necessarily the tty although the terminal was doing the same function as the tty, so a raw terminal would be graphical... I guess we are going so far back the words are losing meaning but the terminal emulator which runs on top of the GUI classifies as part of the GUI as much as notepad or word

6

Look up what makes a GUI. Something can be graphical but not GUI. Something that is GUI is obviously graphical. "All thumbs are fingers, but not all fingers are thumbs".

1

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

10

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.

7

do you have a proposal for a solution, or is this just a rant post?

I think this post captures a commonly felt problem whether or not it is still a fair criticism.

2

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.

5

This is the reason I sometimes come back to the BSDs, they just feel more coherent as a whole.

4
lemy.lol

I think you can with Pins, no right-click menu, but you can find them easily from within the app

2
lemmy.blahaj.zone

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.

5

Hey man, it's no surprise the gui people are good at making the gui settings in the gui :P

3

No one should feel cold. Lets add some autoplay taboola ads to all of your screens so it wont feel so cold anymore. You're welcome.

1

The GUI for Linux Mint is pretty phenomenal. Looks a LOT like Windows Control Panel

2

My favourite part of Linux cli is you only know you've done something when you get no feedback at all.

2

Is this some peasant meme I am too NixOS to understand?

(Joking, joking. A good system settings center is important for graphically managed distros.)

1
lemmy.world

I'm actually fine with Linux being for people who are into knowing how their computers work and Windows/MacOS for people who aren't.

-2
starelfsc2reply
sh.itjust.works

I just wish there was an option for normal people to escape "we've added more bloatware and spyware in this mandatory update" without having a CS degree.

6

There is a lot of accessible distros, but the issue is that people have been using an OS for so long that it is hard to switch and relearn a new workflow.

Asking for everything to be done for you is just asking for another bloatware/spyware OS (see how Ubuntu is slowly going that way for example).

Unless you have a tool that you can't live without, bite the bullet and make the jump. It will suck for a 2-3 weeks, but it is worth it.

3

Please tell this to my systems administrator at my job. At home it’s all Linux at work trying to use Windows is mind numbing.

3
feddit.nl

If you don't know what you're doing, you have no reason to edit those settings.

-2

Conversely, if it was presented in a more user friendly way, perhaps more people would know what they were doing.

2

Set settings once in a config file and check it in, then never fight it again.

GUI is bloat for basically everything. If you want to rice go ahead, but if you do in a UI... lol cool story bro.

Edit. Oh no! I've been clocked by the Ubuntu crew!

-3