Basic Networking on Linux
DevOpsNetworking

Basic Networking on Linux

View IP addresses and routing (ip), check which ports are listening (ss), test connections (ping, curl), and understand name resolution (DNS, /etc/hosts). Enough to diagnose most networking issues on a server.

K
KaiMay 23, 2026· 16 views
Users, Groups and sudo
DevOpsSecurity

Users, Groups and sudo

Linux is multi-user by design. This article explains where users and groups are stored (/etc/passwd, /etc/shadow, /etc/group), how to create and manage them, and why you should use sudo instead of logging in directly as root.

K
KaiMay 23, 2026· 13 views
Software Package Management: apt, dnf, a...
DevOpsLinux

Software Package Management: apt, dnf, apk

Install, update, and remove software on Linux through the package manager. Understand the differences between distro families (apt for Debian/Ubuntu, dnf for Fedora, apk for Alpine) and tell apart updating the package list from upgrading software.

K
KaiMay 23, 2026· 16 views
Disks and Capacity: df, du, lsblk, mount
DevOpsStorage

Disks and Capacity: df, du, lsblk, mount

\"The server is out of disk\" is a classic incident. This article teaches the troubleshooting workflow: df to see which filesystem is full, du to trace which directory is eating space, find for large files, plus lsblk and mount to understand storage devices.

K
KaiMay 23, 2026· 11 views
Compress and Decompress: tar, gzip, zip
DevOpsLinux

Compress and Decompress: tar, gzip, zip

Bundle many files into one and compress them for backups or moving data. Understand the difference between archiving (tar) and compressing (gzip), memorize the confusing tar flags, and know when to use tar.gz vs zip.

K
KaiMay 23, 2026· 21 views
Processes and Signals
DevOpsLinux

Processes and Signals

A deep dive into what's running on the system: processes and the parent-child relationship, viewing with ps/top, running in the background with &, and controlling with signals — why kill -9 differs from a plain kill, and when to use which.

K
KaiMay 23, 2026· 9 views
Permissions: User, Group, and chmod
DevOpsSecurity

Permissions: User, Group, and chmod

A deep dive into Linux's permission mechanism: reading the rwx string, the three groups user/group/other, octal notation, changing permissions with chmod (octal and symbolic), changing ownership with chown, and the umask that decides default permissions.

K
KaiMay 23, 2026· 11 views