Open the kernel window and explore process info with concrete commands. 02.02.2026 | reading time: 3 min The /proc filesystem is a live view into the kernel and running processes; treat it as a set of virtual files to read and sometimes write. This short guide shows concrete commands to inspect CPU details, uptime, individual process info and the writable kernel tunables. Hands on: inspect common entries Try these commands to see how /proc looks in practice and examine output yourself ```bash $ ls -d /proc/[0-9]* | head -n 5 /proc/1 /proc/2 /proc/345 /proc/1024 /proc/2345 $ cat /proc/cpuinfo | grep 'model name' | uniq model name : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz $ cat /proc/uptime 12345.67 23456.78 $ cat /proc/self/status | grep -E 'Name|Pid|VmRSS' Name: bash Pid: 4321 VmRSS: 20400 kB $ ls -l /proc/self/fd lrwx------ 1 user user 64 Jan 1 00:00 0 -> /dev/pts/0 lrwx------ 1 user user 64 Jan 1 00:00 1 -> /dev/pts/0 lrwx------ 1 user user 64 Jan 1 00:00 2 -> /dev/pts/0 ``` Deep corners and writable knobs Explore special entries such as /proc/<pid>/fd to see open file descriptors, /proc/net for socket info and /proc/mounts for current mounts; use `cat` to read and `sysctl` or echo into /proc/sys for safe tunables but be cautious when writing. For example check the forward setting with `sysctl net.ipv4.ip_forward` or read the raw file `cat /proc/sys/net/ipv4/ip_forward` and only change values when you understand the system effect. Why tools read /proc for you Many familiar utilities are thin layers over /proc data; `ps` and `top` collect process fields from /proc, `lsof` inspects /proc/*/fd to list open files and `ss` consults /proc/net to show sockets; learning what these tools pull from /proc helps to validate their output and to script custom checks. Next steps and safety Practice by inspecting multiple processes, comparing ps output with /proc data and writing only to documented /proc/sys keys while on disposable systems or VMs; mastering /proc speeds troubleshooting and informs decisions about kernel tuning. Consider deepening skills toward certification and exam readiness with focused courses and exam prep such as CompTIA Linux+ or LPIC-1 and intensive training at bitsandbytes.academy. Join Bits & Bytes Academy First class LINUX exam preparation. filesystem processes utilities troubleshooting