Managing Processes (ps, top, kill, htop)
A process is an instance of a running program. When you execute a command, the system creates a process, which is assigned a unique Process ID (PID). Managing processes effectively is crucial for system monitoring, performance optimization, and troubleshooting.
Commands Covered
In this lesson, we will cover the following commands to manage processes in Linux:
- ps – View process information.
- top – Monitor real-time processes.
- kill – Terminate processes.
- htop – Interactive process viewer.
1. Viewing Processes with ps
The ps command provides a snapshot of all active processes at a given moment. Unlike top, it does not update in real-time.
Basic Syntax:
ps [options]
Commonly Used Options:
Option | Description |
---|---|
-e | Displays all processes. |
-f | Full-format listing, including user and command details. |
-u [user] | Displays processes owned by a specific user. |
-aux | Displays detailed information for all processes. |
Examples:
1. Display all processes:
ps -e
2. Show detailed information for all processes:
ps -aux
Output:
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.1 22576 2704 ? Ss 12:10 0:00 /sbin/init
user 1234 0.2 1.3 89672 13456 pts/0 S+ 12:11 0:02 /bin/bash
3. View processes for a specific user:
ps -u user
4. Find a specific process by name:
ps -aux | grep firefox
2. Monitoring Processes with top
The top
command is used to monitor processes in real-time. It updates data continuously and is ideal for observing resource usage and system performance.
Basic Syntax:
top
Commonly Used Options:
Key | Description |
---|---|
q | Quit the top command. |
k | Kill a process by entering its PID. |
M | Sort processes by memory usage. |
P | Sort processes by CPU usage. |
r | Renice a process (change priority). |
z | Toggle color/monochrome display. |
Examples:
1. View real-time processes:
top
2. Sort by memory usage:
Press M
while in top
.
3. Sort by CPU usage:
Press P
while in top
.
4. Kill a process directly in top:
Press k
and enter the PID.
3. Terminating Processes with kill
The kill
command is used to terminate processes using their PID.
Basic Syntax:
kill [signal] PID
Common Signals:
Signal | Number | Description |
---|---|---|
SIGTERM | 15 | Gracefully terminate a process (default). |
SIGKILL | 9 | Forcefully terminate a process immediately. |
SIGHUP | 1 | Restart the process. |
Examples:
1. Gracefully terminate a process:
kill 1234
2. Forcefully kill a process:
kill -9 1234
3. Kill all processes by name:
killall firefox
4. Send a restart signal:
kill -1 5678
4. Interactive Process Management with htop
The htop
command provides an interactive and user-friendly interface for monitoring and managing processes. Unlike top
, it supports scrolling and visual representation of system resources.
Installing htop:
sudo apt install htop # Debian/Ubuntu
sudo yum install htop # CentOS/RHEL
Launching htop:
htop
Key Features:
- Color-coded resource usage.
- Horizontal and vertical scrolling.
- Search/filter processes.
- Mouse support for process selection.
Keyboard Shortcuts:
Key | Action |
---|---|
F1 | Help menu. |
F2 | Setup/configuration options. |
F3 | Search for a process. |
F4 | Filter processes based on criteria. |
F5 | Tree view to show process hierarchy. |
F9 | Kill a selected process. |
F10 | Exit htop . |
Examples:
1. View processes interactively:
htop
2. Search for a specific process:
- Press F3 and type the process name.
3. Kill a process using htop
:
- Select the process with arrow keys and press F9.
Comparison of Tools
Command | Real-time Monitoring | Interactive Interface | Process Control |
---|---|---|---|
ps | No | No | View only |
top | Yes | Partial (keyboard only) | Yes |
kill | No | No | Yes |
htop | Yes | Fully Interactive | Yes |
Key Takeaways:
-
ps
is useful for listing processes at a specific point in time, ideal for scripting and logs. -
top
is used for real-time monitoring of processes, CPU, and memory usage. -
kill
allows you to terminate processes by sending signals. -
htop
provides an interactive, user-friendly process management tool with advanced filtering and sorting options.