this post was submitted on 14 Jun 2023
19 points (91.3% liked)

Linux

47559 readers
597 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I understand the usefulness of the terminal and how universal it is for troubleshooting across distros. But can't there be a way to make a nice graphical tool for the various admin level tasks that need to be performed?

Edit: Thank you to the outpouring of feedback on this. It has greatly opened my eyes to how much I don't know about. I did see a couple suggestions though, so I'll be sure to check them out.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago

There is a way. You go and build the GUIs you want to exist or convince someone else to do it for you. As others have mentioned, building GUIs is a lot more work than building CLIs. Whenever an admin tool exists, someone wrote it because they needed it. If they decided that CLI is enough, that's what the tool uses. Since CLI is almost trivial to build, most such tools have CLI. Luckily GUIs can be built on top of CLIs so if you want a GUI for something that has CLI, you can just put the work towards the GUI that calls the CLI under the covers.