From 57a91acf3c784a4d190f9346689007181de9770c Mon Sep 17 00:00:00 2001 From: Lloyd Date: Tue, 5 Aug 2025 19:21:06 +0000 Subject: [PATCH] updated process management with new commands --- 07-process-management/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/07-process-management/README.md b/07-process-management/README.md index e3bbec7..9224270 100644 --- a/07-process-management/README.md +++ b/07-process-management/README.md @@ -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)