Network Diagnostic Tools
DevOpsNetworking

Network Diagnostic Tools

A practical network-troubleshooting toolkit and workflow: ping, traceroute, dig, ss/netstat, nc, curl, openssl, tcpdump — each inspects one layer. And how to use them in sequence to pinpoint a 'can't connect' problem.

K
KaiMay 23, 2026· 20 views
Tracing a Request End to End
DevOpsNetworking

Tracing a Request End to End

The final article: putting everything together to trace a complete https:// request — from DNS resolution, routing, the TCP handshake, TLS encryption, to HTTP and the response — with real per-phase timing. Plus a series wrap-up.

K
KaiMay 23, 2026· 17 views
Cron and Scheduled Tasks
DevOpsLinux

Cron and Scheduled Tasks

Have commands and scripts run on a schedule — nightly backups, weekly log cleanup. Learn crontab syntax, the common pitfalls (PATH, environment), at for one-off jobs, and a wrap-up of the whole Linux series.

K
KaiMay 23, 2026· 15 views
Shell Scripting: Automating with Bash
DevOpsLinux

Shell Scripting: Automating with Bash

Combine commands into scripts so you don't retype them and can automate your work. Learn the shebang, variables, parameters, conditionals, loops, functions, exit codes, and safe-scripting habits like set -euo pipefail.

K
KaiMay 23, 2026· 19 views
systemd and Services
DevOpsLinux

systemd and Services

systemd is the init system that controls every service on modern Linux. Learn systemctl to start/stop/restart services, have them auto-start at boot, write your own unit files, and view logs with journalctl.

K
KaiMay 23, 2026· 21 views
SSH and File Transfer: ssh, scp, rsync
DevOpsSecurity

SSH and File Transfer: ssh, scp, rsync

How you actually get into a remote Linux server: SSH with key authentication (safer than passwords), a handy config file, and transferring files with scp and rsync. A foundational skill for everything you do on a server.

K
KaiMay 23, 2026· 25 views
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· 30 views