To do a cheatsheet, we have to understand first: What is a cheat sheet?
To simplify: A cheat sheet is a bunch of notes (In paper or digital) that helps in certain stuff, like, in this case, to use TERMINAL in Linux.
Man: An interface to the system reference manuals
Example: Man cut → Open manual for “Cut” command.
Sudo: Execute a command as another user
Example: Sudo useradd <Name> = Machine creates a new user named <Name>.
Whoami: Print effective user id
Example: whoami (when run as root) → Prints root. Otherwise, prints the username.
-add/-mod/del: Add, modify or delete. All goes with prefixes, as user.
Example: sudo Userdel -m (Name) → Machine deletes the use named <Name>
Mkdir: Create a new directory.
Example: mkdir -p ~/Downloads/Homework → Creates a Homework folder inside Downloads in the user’s home directory.