this post was submitted on 26 Mar 2026
63 points (97.0% liked)
Linux
64366 readers
748 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
nmonThat, along with
tmuxandhtop, are installed on everything I have.nmonthenld-give me a system health page that shows me where the bottleneck is.It's interesting to see how a system behaves when you're doing something like a backup... it's not always what you think.
Don't want to sound unappreciative, but the apps you refer to (and others in these threads) are not actually CLI's but TUI's.
CLI (command line interface) is when all interaction actually happens in the command line, ie. command + arguments. CLI's are much simpler to implement, have little dependencies (pretty much just argument list, two data streams---stdout and stderr--and exit status) and typically one invocation means one independent task. All this makes CLI's ideal as building building blocks of (semi-)automated workflows, but many CLI's are also optimized for direct invocation from interactive shell, eg. by adding features such as output coloring, interactive yes/no steps or command completion (although that part is actually driven by the shell, and is quite independent from the execution of the app.)
TUI (text user interface, i think) on the other hand, is more like GUI but replicated within the confines of terminal emulator. The interaction heavily depends on terminal features such as moving cursor, resize notifications, etc. Also when TUI is ran, it's normally used for zero to may tasks: e.g. I could start htop and investigate no process, 1 process or many, before quitting. Unlike CLI's, TUI's pretty much make no sense within automation.
Don't get me wrong: I love TUI's (htop is one of my favorite and thanks for recommending nmon, i'll have a look)--and often prefer them to GUI's (eg. my text editor is nvim, which is a TUI app!), but in my post I was specifically interested in exploring CLI's. I would actually love a similar post to mine but focusing explicitly on TUI's as opposed to CLI's.
Sorry for long post -- I hope it can kind of serve as explanation for people who are new to this and stumble upon this thread and aren't quite familiar with the distinction.
Ok, fair point