I am a Linux beginner/amateur and I have sort of had enough of copy and pasting commands I find on the internet without having a good understanding of how they actually work.
I guess my end goal is to be able to comfortably install and use arch Linux with my own customization’s and be able to fix it when things go wrong.
What tips/ideas do you have for getting better at navigating the terminal, and getting a better understanding of how the os works. What is a good roadmap to follow? And how did you, advanced Linux user, get to the stage your at now?
Edit: my current distro is bazzite just in case you were interested and thanks for all the replies you are all really helpful.
Just giving my +1 about what others have said:
in terminal man to get an overview of a command and usage, tldr.sh is a “tldr” of those same man pages simplified and very user friendly, and apropos to search man pages by description to find tools that do what you wanna do.
Ex usage:
man ls
gives an overview of how ls workstldr ls
gives a quick user friendly overview of how ls works (after installing it, or using the site tldr.sh)apropos compress
will search man pages and output a list of commands that have “compress” in the descriptionLinux has an overwhelmingly large amount of commands or things you can do, it’s good to learn a subset of common things, but arguably more important to learn how to quickly find info on the fly using tools like the above to reference as you do things. I’ve used Linux for about a decade, but still only use the same 5-10 or so commands regularly in the terminal, and look up anything else whenever I need.