Linux Process Management — ps, top, kill, htop Guide

Guide to managing Linux processes: ps, top, htop, kill, nice, nohup, jobs, and bg/fg. With practical examples. Free Linux sysadmin reference, no signup needed.

Help Us Improve
Be the first to rate!

Frequently Asked Questions

How do I find and kill a process by name?
pkill nginx kills all processes named nginx. killall nginx does the same. Or find the PID with pgrep nginx then kill PID.
Is Linux Process Guide free?
Yes, Linux Process Guide on ToolPix is 100% free with no signup or installation required.
Is my data safe?
This is a static reference tool. No data is entered or transmitted.
How do I run a process in the background so it survives logout?
nohup command & — nohup ignores SIGHUP (logout signal) and & runs it in background. Or use screen/tmux to keep a persistent session.
What is the difference between kill -9 and kill -15?
kill -15 (SIGTERM) asks the process to terminate gracefully. kill -9 (SIGKILL) forces immediate termination — the process cannot catch or ignore it.