As I'm diving into learning Linux, I'm wondering if I should really try to memorize every command along with its options and flags, or if that's unnecessary. How do experienced users approach learning and remembering commands?
3 Answers
You really don't need to remember all the commands spruced with their options. The best approach is to learn concepts first. You'll naturally pick up commands as you use them. If you forget something, just look it up when you need it and get familiar with the most commonly used ones.
Honestly, even after 40 years of working with Unix and Linux, I still forget command flags frequently. What’s handy is that every system has a built-in manual. It’s saved me so many times when my notes are out of reach!
You can always check specific command options using the `--help` flag or by accessing the manual with the `man` command. Just type `man` followed by the command name, and you'll get the details. Remember, no one can recall every single command, and that's totally okay!
And don't forget about using search engines! They can be lifesavers when you're stuck.
Exactly! Commands like installing software can vary from one distro to another, but core functionalities tend to be universal. Just keep practicing!