From b8e818d49616cd556cff89b876cdf1f7ca4679da Mon Sep 17 00:00:00 2001 From: nrmn3m Date: Mon, 25 Mar 2024 01:59:07 +0200 Subject: [PATCH] Add answer to manage processes question --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 857fd7c..4b0b7f3 100644 --- a/README.md +++ b/README.md @@ -349,7 +349,13 @@ Useful resources:
Before you can manage processes, you must be able to identify them. Which tools will you use? ***
-To be completed. +`ps`: Lists information about processes. +`top`: Provides a real-time view of processes and system resource usage. +`htop`: Interactive process viewer with a user-friendly interface. +`pgrep`: Searches for processes based on criteria like name or user. +`pidof`: Finds the PID of a process by name. +`pstree`: Displays processes in a hierarchical tree format. +- **System Monitoring Tools** : Includes `sar`, `vmstat`, and `iostat` for system-wide statistics.