From 4b603ecd2ec8bfed6988fed7bfa7d9466608bd5b Mon Sep 17 00:00:00 2001 From: Liwei Su Date: Mon, 24 Mar 2025 23:09:18 +0800 Subject: [PATCH] Add external link to /proc File System (#8385) * Update 101-listing-finding-proc.md Append useful article at the end. * Update 101-listing-finding-proc.md Small change. --------- Co-authored-by: Liwei Su --- .../106-process-management/101-listing-finding-proc.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/linux/content/106-process-management/101-listing-finding-proc.md b/src/data/roadmaps/linux/content/106-process-management/101-listing-finding-proc.md index 32f44d0b4..31f1a5dad 100644 --- a/src/data/roadmaps/linux/content/106-process-management/101-listing-finding-proc.md +++ b/src/data/roadmaps/linux/content/106-process-management/101-listing-finding-proc.md @@ -22,4 +22,8 @@ Exploring the proc directory (`/proc`), we dive even deeper, enabling us to view # view specifics of a particular PID cat /proc/{PID}/status ``` -In short, 'Finding and Listing Processes (proc)' in Linux is not just a core aspect of process management, but also a necessary skill for enhancing system performance and resolution of issues. \ No newline at end of file +In short, 'Finding and Listing Processes (proc)' in Linux is not just a core aspect of process management, but also a necessary skill for enhancing system performance and resolution of issues. + +Visit the following resources to learn more: + +- [@article@The /proc File System](https://www.kernel.org/doc/html/latest/filesystems/proc.html)