As a Linux sysadmin, ps is one of the most frequently used tools. But most people only know ps aux without understanding the implementation beh…
Posts for: #Tutorial
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 netstat Command Deep Dive: From Network Connections to Port Monitoring
When troubleshooting server network issues recently, I noticed many developers have a superficial understanding of the netstat command. Today, le…
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…
Deep Dive into Linux mkdir Command: Directory Creation Art and Performance Optimization
Original link: https://jsokit.com/tools/linux-commands/mkdir
Linux lsof Command Deep Dive: Unlocking the Secrets of Open Files
Published: May 11, 2026 06:56
Linux ls Command Deep Dive: From Directory Traversal to Colorized Output
ls is one of the most frequently used Linux commands, yet most users never go beyond ls -la. Let’s explore how ls actually works under the hood.
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 …
Linux ln Command Deep Dive: Understanding Hard Links and Symbolic Links
Ever wondered why deleting a file sometimes doesn’t truly remove it? That’s the magic of Linux links. The ln command is one of the core tools in …
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…