15 Linux Commands Every Beginner Should Know (And What Each One Really Does)

Tutomod • Premium content made for you.

15 Linux Commands Every Beginner Should Know (And What Each One Really Does)

The terminal feels like a club with a secret handshake, but you only need about fifteen words to do ninety percent of everything.

Updated August 09, 2026, after a fresh review, with updated visuals and links.

Learn these in this order, try each once on your own machine, and the command line stops being scary by tonight.

Get this ready first

  • Any Linux system with a terminal (or WSL on Windows)
  • Fifteen low risk minutes
Learning Linux terminal commands
Photo by Rafael Minguet Delgado on Pexels

How to do it

1. pwd, ls, cd: where are you and what's here

pwd prints your current location, ls lists what's in it (ls -la shows hidden files and details), cd moves you (cd Documents, cd .. goes up one, cd ~ goes home). Three commands and you can walk the entire filesystem.

2. mkdir, touch, cp, mv, rm: file life and death

mkdir makes folders, touch creates empty files, cp copies, mv moves AND renames, rm deletes (no recycle bin, no mercy: rm -i asks first, that flag is a lifestyle). The morning coffee crew of file management.

3. cat, less, head: reading files

cat spits out short files, less scrolls long ones (q quits), head shows the first lines of anything (head -20). Log files, configs, notes: reading without opening editors is power.

4. grep, find, man: finding anything

grep -ri 'word' folder/ searches file contents, find ~ -name 'thing' hunts by name, man command shows the built in manual for any command. Teachers never leave you stuck when man pages exist.

5. sudo, apt, top, df, history: system powers

sudo runs things as admin (with your password), sudo apt update && sudo apt upgrade keeps systems current, top shows what's eating the CPU (q quits), df -h shows disk space in human numbers, history lists your past commands so nothing's ever lost.

Practicing commands on a Linux laptop
Photo by Lukas Blazek on Pexels

Good habits to keep

  • Tab completes everything: type half a name, hit Tab, shell finishes typos for you, the real reason experts type fast.
  • Ctrl+C kills any runaway command, Ctrl+L clears the screen, arrows recall past commands: the three reflexes that make the terminal feel like home.
  • Alias your favorites in .bashrc later: the shell bends to your habits once the vocabulary settles.

Keep reading

Fifteen commands, one evening, zero fear. The local guide (our file finding tutorial) goes deeper when you're ready, for now, the terminal greets you like an old friend.