From 9e952fe22b9f688d4dd74e373b6b859a3727b477 Mon Sep 17 00:00:00 2001 From: Ahmad Beigi <96728703+r3a70@users.noreply.github.com> Date: Mon, 4 Aug 2025 17:28:40 +0330 Subject: [PATCH] fix: resource typo (#8987) --- .../linux/content/process-priorities@5anSYRhaKIs3dCLWlvZfT.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/linux/content/process-priorities@5anSYRhaKIs3dCLWlvZfT.md b/src/data/roadmaps/linux/content/process-priorities@5anSYRhaKIs3dCLWlvZfT.md index bb6eeb56d..3580ff7c3 100644 --- a/src/data/roadmaps/linux/content/process-priorities@5anSYRhaKIs3dCLWlvZfT.md +++ b/src/data/roadmaps/linux/content/process-priorities@5anSYRhaKIs3dCLWlvZfT.md @@ -1,8 +1,8 @@ # Process Priorities -Linux assigns priority levels to processes, affecting execution timing and resource allocation. Process priorities use "nice" values ranging from -20 (highest priority) to +19 (lowest priority) and only root can set negative nive value. The `/proc` filesystem contains process information including priorities. You can view priorities with `ps -eo pid,pri,user,comm` and modify them using `renice` command. +Linux assigns priority levels to processes, affecting execution timing and resource allocation. Process priorities use "nice" values ranging from -20 (highest priority) to +19 (lowest priority) and only root can set negative nice value. The `/proc` filesystem contains process information including priorities. You can view priorities with `ps -eo pid,pri,user,comm` and modify them using `renice` command. Visit the following resource to learn more: - [@article@Understanding Process Thread Priorities in Linux](https://blogs.oracle.com/linux/post/task-priority) -- [@article@How To Manipulate Process Priority In Linux](https://www.itsmarttricks.com/how-to-manipulate-process-priority-in-linux-using-nice-and-renice-commands/) \ No newline at end of file +- [@article@How To Manipulate Process Priority In Linux](https://www.itsmarttricks.com/how-to-manipulate-process-priority-in-linux-using-nice-and-renice-commands/)