Tagged articles
10 articles
Page 1 of 1
Raymond Ops
Raymond Ops
Feb 27, 2025 · Operations

Unlock Linux Secrets: Exploring /proc and /proc/self for Process Insight

This article explains the Linux /proc virtual file system and its /proc/self shortcut, detailing how to read process information such as command line, working directory, executable path, environment variables, memory maps, and memory image using simple shell commands.

Operationsprocproc-self
0 likes · 5 min read
Unlock Linux Secrets: Exploring /proc and /proc/self for Process Insight
DevOps Operations Practice
DevOps Operations Practice
Jun 16, 2024 · Fundamentals

Understanding the /proc Virtual Filesystem in Linux

This article explains the Linux /proc virtual filesystem, detailing its role as an in‑memory pseudo‑filesystem that provides comprehensive system and process information such as CPU, memory, uptime, process details, hardware, and filesystem data.

FilesystemSystem Informationproc
0 likes · 4 min read
Understanding the /proc Virtual Filesystem in Linux
Liangxu Linux
Liangxu Linux
Feb 6, 2023 · Operations

Recover Deleted Linux Files While Their Processes Remain Open

This guide explains how a file deleted on a Linux system can still be recovered when a running process holds an open file descriptor, detailing the use of tail, lsof, the /proc filesystem, and simple copy commands to restore the data.

File RecoveryLinuxcommand-line
0 likes · 5 min read
Recover Deleted Linux Files While Their Processes Remain Open
Open Source Linux
Open Source Linux
Aug 17, 2022 · Operations

Top 12 Linux Tools to Monitor Memory Usage Efficiently

This article presents a comprehensive list of twelve Linux commands and graphical tools—including /proc/meminfo, atop, free, GNOME System Monitor, htop, KDE System Monitor, memstat, nmon, ps, smem, top, and vmstat—that allow you to view and analyze memory consumption in real time, with usage examples and screenshots.

FreeLinuxMemory Monitoring
0 likes · 7 min read
Top 12 Linux Tools to Monitor Memory Usage Efficiently
Open Source Linux
Open Source Linux
Jun 8, 2022 · Operations

How to Accurately Measure CPU Usage on Linux: vmstat, /proc/stat, and top

This article explains the difference between CPU load and CPU usage, then shows step‑by‑step how to calculate CPU utilization on Linux using vmstat, parsing /proc/stat, and extracting idle percentages from top, with ready‑to‑run command examples for both single‑core and multi‑core systems.

CPU MonitoringLinuxproc
0 likes · 34 min read
How to Accurately Measure CPU Usage on Linux: vmstat, /proc/stat, and top
Liangxu Linux
Liangxu Linux
Nov 4, 2021 · Operations

Master Linux Memory Monitoring: 6 Essential Commands Explained

This guide walks Linux administrators through six practical commands—free, vmstat, /proc/meminfo, top, htop, and per‑process memory checks—detailing their syntax, useful options, example outputs, and how to interpret key metrics for effective memory troubleshooting and performance tuning.

FreeLinuxMemory Monitoring
0 likes · 26 min read
Master Linux Memory Monitoring: 6 Essential Commands Explained
Liangxu Linux
Liangxu Linux
Sep 20, 2020 · Fundamentals

Master Linux Process Debugging: From ps to gdb and /proc

This guide walks you through Linux process fundamentals and equips you with practical commands—ps, strace, pstack, pstree, gdb, and /proc file inspection—to diagnose, trace, and debug running programs step by step.

DebuggingLinuxgdb
0 likes · 10 min read
Master Linux Process Debugging: From ps to gdb and /proc