Linux Fundamentals

The Linux skills every infrastructure engineer needs, taught without assuming you already know them. Covers the file system layout, users and permissions, systemd service management, process control, networking with ip and ss, package management across distros, shell scripting, and the small set of commands that actually solve real problems. Built as a structured series so you can work through it in order or drop into any topic on demand. Whether you are sitting an RHCSA exam, preparing for a Linux admin role, or just tired of copy pasting commands you do not understand, these guides turn reference documentation into working knowledge.

How to List Users in Linux (and Manage User Accounts)

How to List Users in Linux (and Manage User Accounts)

You have inherited a server, taken over a project, or just need to audit who has access. The first question: who has an account on this machine? Linux stores user information in a few well-defined places. Once you know where to look, listing users, checking their groups, and managing accounts becomes straightforward. Quick Reference Task

How to List Users in Linux (and Manage User Accounts) Read More »

IP Addressing Explained: Public vs Private, Subnetting & Interview Questions

IP Addressing Explained: Public vs Private, Subnetting & Interview Questions

Built for people who are learning networking the real way: by breaking stuff, fixing it, and doing it again. From the field: I have seen engineers push a full /16 network for a single web service because it was the default in the Azure template they cloned. Understanding IP addressing is not optional — it

IP Addressing Explained: Public vs Private, Subnetting & Interview Questions Read More »

An open hard drive is displayed on a wooden surface, showcasing its internal components and metallic details.

Linux Disk Space: How to Find What’s Eating Your Storage (df, du, lsblk)

The Outage Nobody Saw Coming Disk full. Two words that have caused more production outages than most people realize. Applications crash, databases corrupt, logs stop writing—all because nobody was watching disk usage. Disk management isn’t glamorous, but it’s essential. Knowing how to check space, find what’s consuming it, and manage storage is fundamental sysadmin work.

Linux Disk Space: How to Find What’s Eating Your Storage (df, du, lsblk) Read More »

Red backlit keyboard and code on laptop screen create a tech-focused ambiance.

grep, sed & awk: Linux Text Processing for Sysadmins

The Power Trio of Text Processing Logs, configs, and data outputs are all text. The ability to search, filter, and transform text efficiently separates those who manually copy-paste from those who process gigabytes of logs in seconds. grep finds. sed replaces. awk structures. Together, they’re an analytical powerhouse that’s been solving problems since before most

grep, sed & awk: Linux Text Processing for Sysadmins Read More »

Close-up of a computer monitor displaying cyber security data and code, indicative of system hacking or programming.

SSH Essentials: Remote Administration

Your Gateway to Remote Systems SSH is how you manage servers that aren’t sitting under your desk. Every cloud instance, every production server, every container host—you’ll access them through SSH. Basic SSH is connecting with a password. Production SSH means key-based authentication, secure configurations, tunnels, and jump hosts. That progression represents real career growth. SSH

SSH Essentials: Remote Administration Read More »

Close-up of colorful text on a computer screen, showcasing cybersecurity concepts.

Linux Process Management: ps, top, htop & kill Commands

What’s Running and How Do I Stop It? Every application, service, and script on a Linux system runs as a process. Managing processes—finding them, understanding them, and sometimes killing them—is core sysadmin work. When production is on fire and something is consuming all the CPU, you need to identify and handle it in seconds, not

Linux Process Management: ps, top, htop & kill Commands Read More »

Scroll to Top