What is the difference between renice and chrt commands in Linux?

9,177

Solution 1

chrt(1) is used not only to change the priority of a process, but also the scheduling policy. The scheduling policy can be four:

  • SCHED_FIFO=first in, first out, real time processes.
  • SCHED_RR=round robin real time processes.
  • SCHED_OTHER=normal time sharing
  • SCHED_BATCH=almost the same as the SCHED_OTHER, but the process is considered always the most cpu consuming.

See setscheduler(2).

renice(8) just change the priority of a process.

Solution 2

Well, I found this on http://www.spinics.net/lists/linux-rt-users/msg03987.html which explains the difference pretty nicely:

"nice" is an historic utility which was used in the early days of batch computing to be "nice" to other users and give up some CPU time. It's still in use and useful and applies only to processes which run with the SCHED_OTHER policy on Linux.

"chrt" is a tool to change scheduling policy (SCHED_OTHER, SCHED_FIFO, SCHED_RR) and the priority of a process/task. With chrt you can either start a process with such a policy or modify an already running process/tasks policy. You need to have the permissions to do that.

So the main difference is that "nice" can only operate within the nice levels of the SCHED_OTHER policy while "chrt" can change the policy and the priority of a process/task.

...

tglx

Share:
9,177

Related videos on Youtube

halp
Author by

halp

Updated on September 17, 2022

Comments

  • halp
    halp almost 2 years

    What is the difference between renice and chrt commands in Linux?

  • halp
    halp almost 14 years
    So chrt is "stronger" than renice? Does it make sense to use chrt and renice together? The manpages look cryptic to me, I'd like to read about some use cases to understand the differences.
  • PiL
    PiL almost 14 years
    If you want to change the priority of a process, just use nice and renice. If you want to change more in detail a property of a process, use chrt.
  • Ken Sharp
    Ken Sharp over 8 years
    This is definitely the better answer, thanks. You can still set a nice value for processes in policies other than SCHED_OTHER but it shouldn't have an effect. Could be useful if moving processes in and out of scheduler priorities though. There's also SCHED_IDLE.
  • Ken Sharp
    Ken Sharp over 8 years
    There's also SCHED_IDLE.