From d8b33af8c9e5e594525d05e5444d02b3bee666c3 Mon Sep 17 00:00:00 2001 From: sukalaper Date: Thu, 10 Apr 2025 17:29:39 +0700 Subject: [PATCH] Doc: Proc Priorities Under Process Management --- .../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: