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)