diff --git a/src/data/roadmaps/linux/content/process-management/proc-priorities.md b/src/data/roadmaps/linux/content/process-management/proc-priorities.md index d413c2dc6..78b4c31b9 100644 --- a/src/data/roadmaps/linux/content/process-management/proc-priorities.md +++ b/src/data/roadmaps/linux/content/process-management/proc-priorities.md @@ -9,7 +9,7 @@ By understanding and managing proc priorities, you can optimize system performan Here's a simple command in the Linux terminal to display the process ID, priority, and user for all processes: ```sh -ps -eo pid,pri,user +ps -eo pid,pri,user,comm ``` To change the priority of any process, you can use the `renice` command: