The terminal didn't become optional. It became the job.
Most of what happens on a real server has no graphical interface at all. The information you need most, disk space, a crashed service, what's actually listening on a port, shows up in exactly one place.
Six ordinary tasks from a normal week of building and shipping software. Same list either way.
Eight commands that pay off before anything else does
Ranked by how often you'll actually reach for them, not by how advanced they sound.
tmux
Start a session, detach, close your laptop. Whatever you started keeps running on the server, not on your machine.
ps + kill
Find the process that's stuck or eating memory and stop it, instead of restarting the whole machine.
tail -f + grep
Watch a log update live and filter it to the lines that actually matter, instead of scrolling through everything.
df and du
See how full the disk is, then find exactly which directory is responsible before it becomes an outage.
chmod and chown
Fix the permission errors that come up constantly on shared servers, without guessing at 777.
systemctl
Start, stop, and check whether the service that's supposed to be running actually is.
curl
Test an API or a server directly, headers and all, without opening a browser or a separate tool.
ssh keys, scp, rsync
Connect to and move files between servers without typing a password every single time.
Four situations, four first moves
Not the full fix. Just where to look first, so you're not guessing while something's down.
First command finds which disk is full. Second finds which directory is responsible.
Status tells you if it's even trying. The log tells you why it's failing.
Finds exactly which process is holding the port, so you can stop that one instead of guessing.
Check who actually owns the file before changing anything. Fixing the wrong permission is how a small problem becomes a security one.
The commands matter less than how you use them
Read the error at the bottom of the stack trace first. It's usually the real one. Everything above it is what broke because of it.
One terminal tab per task, not fifteen tabs open for the same task. If you're losing track, you've lost the terminal's whole advantage.
The moment you run the same three commands twice, put them in a script. Future you will not remember the exact flags.
"The GUI shows you what someone thought you'd want to see. The terminal shows you what's actually happening."
You don't need to master Linux. You need six commands you actually remember under pressure.
Learn them on a real job, not a tutorial. The habit only sticks when something was actually at stake.