From c46f8ea8e9623fc5dd90101ab536584da2c0d16e Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Sun, 7 Dec 2025 19:19:01 +0200 Subject: [PATCH 1/4] Update nice.md --- pages/common/nice.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/nice.md b/pages/common/nice.md index cf98212fb7c236..3c9029c40fe0aa 100644 --- a/pages/common/nice.md +++ b/pages/common/nice.md @@ -8,6 +8,10 @@ `nice -{{niceness_value}} {{command}}` +- Launch a program heightened priority: + +`sudo nice --{{niceness_value}} {{command}}` + - Define the priority with an explicit option: `nice {{[-n|--adjustment]}} {{niceness_value}} {{command}}` From 8867b15a269123fcc1ca3ffc24d093dd5470ed2c Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Sun, 7 Dec 2025 19:27:36 +0200 Subject: [PATCH 2/4] Update nice.md --- pages/common/nice.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pages/common/nice.md b/pages/common/nice.md index 3c9029c40fe0aa..e02577ecb35ce0 100644 --- a/pages/common/nice.md +++ b/pages/common/nice.md @@ -4,7 +4,15 @@ > Niceness values range from -20 (the highest priority) to 19 (the lowest). > More information: . -- Launch a program with altered priority: +- Print the current niceness value: + +`nice` + +- Increment the current niceness value by 10: + +`nice nice` + +- Launch a program with lowered priority: `nice -{{niceness_value}} {{command}}` From 828732a2f399a902edee7e2d0fe10185fd6ce70d Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Mon, 8 Dec 2025 15:38:07 +0200 Subject: [PATCH 3/4] Update pages/common/nice.md Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> --- pages/common/nice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/nice.md b/pages/common/nice.md index e02577ecb35ce0..daac22eac8ed16 100644 --- a/pages/common/nice.md +++ b/pages/common/nice.md @@ -16,7 +16,7 @@ `nice -{{niceness_value}} {{command}}` -- Launch a program heightened priority: +- Launch a program with heightened priority: `sudo nice --{{niceness_value}} {{command}}` From 3767ac0cce69ec70080bb458cdee2aa5ab41190d Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:51:40 +0200 Subject: [PATCH 4/4] Update nice.md --- pages/common/nice.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/common/nice.md b/pages/common/nice.md index daac22eac8ed16..08b9a46fc7e377 100644 --- a/pages/common/nice.md +++ b/pages/common/nice.md @@ -2,6 +2,7 @@ > Execute a program with a custom scheduling priority (niceness). > Niceness values range from -20 (the highest priority) to 19 (the lowest). +> Note: Some modern schedulers ignore niceness or limit its effects inside autogroups. > More information: . - Print the current niceness value: