api: "YAML JSON TOON Database" version: 1.0.0 format: json dataset: id: 16 slug: process-management-commands title: "Unix Process & System Management Commands" description: "Essential Unix commands for monitoring and managing processes and system resources." category: "Unix Commands" category_slug: unix-commands tags: "unix,linux,commands,process,system,admin" view_count: 0 created_at: 1777673262 updated_at: 1777673262 data: commands [10]{command,description,example,category}: ps,"Display information about running processes","ps aux","Process Monitoring" top,"Display real-time system summary and process list","top -o %MEM","Process Monitoring" htop,"Interactive process viewer (enhanced top)",htop,"Process Monitoring" kill,"Send a signal to a process","kill -9 1234","Process Control" nice,"Run a program with modified scheduling priority","nice -n 10 ./script.sh","Process Control" df,"Report filesystem disk space usage","df -h","System Monitoring" du,"Estimate file and directory space usage","du -sh /home","System Monitoring" free,"Display amount of free and used memory","free -h","System Monitoring" uname,"Print system information","uname -a","System Information" lscpu,"Display CPU architecture information",lscpu,"System Information"