Most cloud and DevOps work still starts in a terminal. You do not need to know everything on day one—you need a small set of moves that you can use without thinking.
Before you type
- Read prompts carefully. Many mistakes are copy-paste accidents.
- Prefer
man command(orcommand --help) over guessing flags.
Ten commands to practice today
pwd— “Where am I?” Prints your current folder.ls— “What is here?” List files. Tryls -laonce you are comfortable.cd— Change directory.cd ..goes up one level;cd ~goes home.mkdir— Make a folder. Example:mkdir practice.touch— Create an empty file. Example:touch notes.txt.cat— Print a small file to the screen. Example:cat notes.txt.cp— Copy. Example:cp notes.txt notes-backup.txt.mv— Move or rename. Example:mv notes.txt diary.txt.rm— Delete. Be careful:rmdoes not send files to a recycle bin.man— Manual pages. Example:man ls.
A five-minute drill
Create a folder, add a file, copy it, rename it, list the folder, then remove only what you created—slowly and on purpose.
What “good” looks like
You are not racing. You are building muscle memory so that later lessons (permissions, processes, services) feel familiar instead of scary.
Next step: learn what ls -la is really telling you (permissions come next in most learning paths).