Clarification: Just making fun of people(including myself) who watch shitty videos instead of official documentation.
Man pages are for people who already know a lot about Linux and understand all the nuances and understanding of Linux
Even after using Linux for many many years I still don’t understand wtf nearly all man pages mean. It’s like a fucking codex. It needs to be simplified but not to the extreme where it doesn’t give you information you need to understand it.
Tbh that’s most of Linux, not designed for average people, designed by Linux users who think that all others should know everything about Linux.
Enter tldr and navi
I’d like to add
apropos
to this as well.
l must be using man pages very differently from you. To me they are mostly the easy reference to check the available flags for a command, and sometimes the reference on available config file entries, e.g. ssh_config(5)
For those things I was using them quite soon when I started using Linux, because it’s quicker than googleing every time if you just need one flag or one option name. For more complex things, like tar-and-gzip in one which needs like four, I still google though.
Probably there are very complicated ones too, the ones explaining subsystems or APIs of the kernel, but those I don’t need as a user.
I don’t get it either. I can see how you’re getting confused if you end up in section 2 or 3 of the manpages or with the kernel calls. But that’s not what a beginner is looking for. The manpages for the user commands are pretty alright. Sometimes even excellent.
It depends on who writes them, I guess. More “modern” software come with pretty good and concise manpages, meanwhile stuff like the coreutils still have manpages that feel like an incomprehensible mess.
I find them very useful for programs that I already know what to use them for otherwise I usually consult the arch wiki.
Copypastes every terminal command string from every forum post they see, hoping one of them fixes the problem
literally the only reason I installed nano
These are the same people who later on complain about Linux being shit because it just breaks
Such people are the main targets of
rm -rf
trolls.
You ask someone for instructions
They send you some bullshit 10 minutes long video
Now instead of ctrl+f or skimming the article and jumping where you want to go you need to jump around in a video
REEEE
Man pages are useful references but go ahead and learn how to use sed or awk from their man pages.
Yep.
That’s what the RTFM folks don’t seem to understand: if you didn’t even know, what you’re looking for, you can’t look it up.
Or make
Free tech tip: https://cht.sh/ serves practical, usage-focused help on common command-line tasks. You can visit the website, or even better, curl for what you want.
$ curl cht.sh/touch
gets you this:
cheat:touch # To change a file's modification time: touch -d <time> <file> touch -d 12am <file> touch -d "yesterday 6am" <file> touch -d "2 days ago 10:00" <file> touch -d "tomorrow 04:00" <file> # To put the timestamp of a file on another: touch -r <refrence-file> <target-file>
Append with
~
and a word to show only help containing that word:$ curl cht.sh/zstd~compress
Result:
tldr:zstd # zstd # Compress or decompress files with Zstandard compression. # More information: <https://github.com/facebook/zstd>. # Decompress a file: zstd -d path/to/file.zst # Decompress to `stdout`: zstd -dc path/to/file.zst # Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default: zstd -level path/to/file # Unlock higher compression levels (up to 22) using more memory (both for compression and decompression): zstd --ultra -level path/to/file
For more usage tips,
curl cht.sh/:help
.Man pages fucking suck, and I say that having been working with linux full time professionally for 11 years.
The best ones have plenty of examples.
How about using tealdeer?
Is there any reason to use tealdeer over just tldr aside from speed?
I don’t know tbh. I used both and tldr was really slow when compared to man or even just DDGing, tealdeer is real fast
I’ve gotten in the dumbfounding habit of searching
man <program>
on the web instead of in the terminal I’m already typing in.Dude. Warn me before saying something like that. I’m too high for this… Lol
I do that occasionally when.I don’t want to lose/scroll back to the output currently in my terminal (or I want to refer to it while reading the manpage)
I really like the man pages for commands that have examples of some common usage at the bottom, that gets you kickstarted and you can just adapt your own command from the example.
Same outcome even if you read man pages
A lot of man pages suck ass.
Except openBSD ones, they should be the standard of quality for user documentation.
Hahah true, its a skill issue.
Man page author issue
Man pages are for reference, not learning.
Consider this, nearly every major distro (and some minor distros like Alpine) has a wiki (or is based on a Distro that does).
Thihi and sooner or later they all end up at the arch linux wikis.
We use arch btw.
I also use Arch btw :3
Nice friend
Fren :3
True but if you’re distro offers a good enough user experience then you won’t be spending nearly as much time in docs, as opposed to just enjoying your desktop.
Being for more “technical people” is just a lame excuse for bad UX.
Having extensive documentation is always nice regardless of UX, sometimes its nice to have a wiki that explains how everything works.
Yes but too often distros, and their communities, rely on the ol’ : just read the docs.
And those docs than point to other docs that point to other docs.
To be fair we do the same with windows.
what the fuck is a man page
whatis man
something related to mansplaining… /s
its a giant wall of text i have never used that can be opened with the terminal command
man <othercommand>
where <othercommand> is literally any other commandoh is it short for ‘manual’?
yeah i kind of forgot that word
After many years of tiptoeing through the distros, from RedHat 5 and Mandrake6 to Slack to Gentoo and now Fedora 41. The last thing I want anymore is to need to go RTFM.
I don’t want to open a terminal to compile anything, (I got stacks of tee shirts), or goggle, (yes goggle), to make things work. I’m too old for this crap and I don’t have that much longer to live wasting my short time remaining staring at a terminal and reading man pages. Distros and Linux by extension should “just work” in 2025. And thankfully they do-- most of the time.
You want to be a Sysadmin and a cmd line commando, have at it. I’m peacing out.
Now if only GUIs could be called and worked telepathically. Or better yet, fix any problems before they happen without me even knowing about it.
That’s one of the reasons why I prefer to run older, enterprise hardware.
There’s a good chance, everything has been configured before and most distros work just fine without any tweaking.
I want a stable platform to work on, not another hobby.
I mostly use Tealdear but
--help
works well when Tealdear gets too simplified.