Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add answer to manage processes question #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,13 @@ Useful resources:
<details>
<summary><b>Before you can manage processes, you must be able to identify them. Which tools will you use? ***</b></summary><br>

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.

</details>

Expand Down