Last time I wrote about how-to set or retrieve the CPU affinity of a running process given its PID or to launch a new COMMAND with a given CPU affinity.
If you are looking to sets or retrieves the real-time scheduling attributes of an existing PID or want to runs COMMAND with the given attributes then I recommend to use chrt command.
nice command run a program with modified scheduling priority however, chrt is much more than nice command. The chrt command allows to set your scheduling policy as well as priority. Currently, the following three scheduling policies are supported under Linux:
- SCHED_FIFO: First In-First Out scheduling
- SCHED_RR: Round Robin scheduling
- SCHED_OTHER: Default Linux time-sharing scheduling
But what is a scheduler?
The scheduler is the Linux kernel part that decides which runnable process will be executed by the CPU next. As I said earlier Linux offers three scheduling policies. One is for normal process and can be changes using nice or chrt command (or use system calls under C). Discussion related to Linux scheduler and policies are beyond the scope of this blog post but, I recommend the following two textbooks for in-depth understanding of this topic:
- Programming for the real world - POSIX.4 by Bill O. Gallmeister, O'Reilly & Associates, Inc.
- Understanding the Linux Kernel, Second Edition by Daniel P. Bovet, Marco Cesati, O'Reilly & Associates, Inc.
Examples
You can retrieve the real-time attributes of an existing task/pid with the following command:
$ chrt -p 1
Output:
pid 1's current scheduling policy: SCHED_OTHER pid 1's current scheduling priority: 0
Set process (PID 5124) to 5 priority: remember priority range from -20 (most favorable scheduling) to 19 (least favorable), run:
$ chrt -p 5 5124
You can retrieve minimum and maximum valid priorities with the following command:
$ chrt -m
Sample outputs:
SCHED_FIFO min/max priority : 1/99 SCHED_RR min/max priority : 1/99 SCHED_OTHER min/max priority : 0/0
Set scheduling policy to SCHED_RR, enter:
$ chrt -p -r 5124
Where:
- -f: Set scheduling policy to SCHED_FIFO
- -o: Set scheduling policy to SCHED_OTHER
- -r: Set scheduling policy to SCHED_RR
- -p: Operate on an existing PID and do not launch a new tas
See also:
- man page chrt(1)
- Please note that chrt command may be more useful if you are using real time Linux kernel.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop







![Quick Tip: Find Hidden Processes and Ports [ Linux / Unix / Windows ]](http://s13.cyberciti.org/images/shared/rp/3/4.jpg)




{ 3 comments… read them below or add one }
hello,
-o: Set scheduling policy to SCHED_FIFO
should be
-o: Set scheduling policy to SCHED_OTHER
You are right Amr, but nobody has changed it for almost 3 years ;).
Done.