Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions 07-process-management/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ A process is an instance of a running program. Linux provides multiple utilities
- `pkill -9 processname` – Kill all instances of a process
- `kill -STOP PID` – Stop a running process
- `kill -CONT PID` – Resume a stopped process
- `kill -TSTP PID` - SIGSTOP is a signal that pauses a process (like freezing it)
- `killall process-name` - Kills all processes with the given name
- `renice -n 10 -p PID` – Lower priority of a process
- `renice -n -5 -p PID` – Increase priority of a process (requires root)

Expand Down