Can anyone recommend a resource for better understanding Arch terminal commands, and the "why" behind them
Can anyone recommend a resource for better understanding Arch terminal commands, and the "why" behind them
I’ve recently installed EndeavourOS, and so far, so good. Got an OK setup and managing the basics.
Previously everything I’ve tried has been Debian based.
I know about the Arch Wiki… but was wondering if anyone recommended a relatively concise and easy-to-navigate resource to get a more rounded and complete understanding of Arch terminal commands?
I find it far more easy to learn when I understand where the terms come from - knowing that sudo means “superuser do”, pacman comes from package manager. But the moment I don’t know what yay, -s etc actually mean haha…
Thanks!
man
is your friend. It shows you the manual for a command. Likeman pacman
will show you the manual for pacman. You can exit it with q.I think this simple tip is exactly what I wanted - straight in there! Thanks pal!
As a general refrence, there's also the tldr command line program/command which gives a simplified version of the man page entry for all sorts of common commands :)
Good luck in your Linux ventures! ❤️
You can also use
tldr
for quick guideThere is a linked command
apropos
that searches theman
page database for keywords. It can be very helpful if you forget the exact command you're looking for.You can also use
tldr
for quick guide