From 1197a0fd6daaf875f289cfbd65c6c56eacbd85e1 Mon Sep 17 00:00:00 2001 From: sukalaper Date: Fri, 11 Apr 2025 17:46:15 +0700 Subject: [PATCH] doc: Proc Priorities Under Process Management (#8486) --- .../linux/content/process-management/proc-priorities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: