Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 484 Bytes

File metadata and controls

22 lines (14 loc) · 484 Bytes

processMonitor

(Ryan Welzel 6/2/2025)

Linux kernel module that displays process information through /proc


Features:

  • Creates a /proc/processMonitor entry to view process information
  • Uses seq_file API for efficiency and security
  • Bash script for simplicity

Requirements:

  • Linux OS with kernel headers installed
  • GCC compiler
  • CONFIG_PROC_FS enabled (usually default)

Install dependencies with:

  • Bash: sudo apt install build-essential linux-headers-$(uname -r)