If you’ve ever lost a long-running process because your SSH connection dropped, you know the pain. Today, let’s talk about screen — the terminal …
Posts for: #Tutorial
Deep Dive into Linux rm Command: From unlink System Call to Safe Deletion Practices
rm is probably the most loved and feared command in Linux. Loved because deleting files takes just a few keystrokes; feared because the legend of…
Linux ping Command Deep Dive: From ICMP Protocol to Network Diagnostics
When a website won’t load or a server becomes unreachable, how do you know if it’s a network issue or the service is down? The ping command is yo…
Linux mv Command: The Mechanics of Moving and Renaming Files
You use mv every day, but it’s more nuanced than you think. Moving and renaming files are the same operation in Linux — which sounds counterintui…
Linux lsof Command Deep Dive: Unlocking the Secrets of Open Files
Published: May 11, 2026 06:56
Linux locate Command: File Search 100x Faster Than find
When searching for files on Linux servers, most people reach for find first. But if you’ve ever run find / -name "nginx.conf" on a system with …
Deep Dive into Linux less Command: Building a Web Pager from Scratch
Last week, I was debugging a server issue and needed to check a massive log file. cat flooded my terminal, vim was overkill, but less saved t…
Linux kill Command: A Deep Dive into Signal Mechanisms and Process Management
Written: 2026-05-11 08:00
From ifconfig to ip Command: Modern Linux Network Configuration
While setting up a server recently, I noticed many tutorials still use ifconfig, but running it shows “command not found”. Turns out ifconfig i…
Linux htop Command Deep Dive: Implementation Principles of Interactive Process Monitoring
As an upgraded version of top, htop has become a daily tool for Linux system administrators thanks to its intuitive interface and powerful inte…