nice (Unix)

From Wikipedia, the free encyclopedia
nice
Developer(s)AT&T Bell Laboratories
Initial releaseNovember 1973; 47 years ago (1973-11)
Operating systemUnix and Unix-like
PlatformCross-platform
TypeCommand
Licensecoreutils: GNU GPL v3

nice is a program found on Unix and Unix-like operating systems such as Linux. It directly maps to a kernel call of the same name. nice is used to invoke a utility or shell script with a particular CPU priority, thus giving the process more or less CPU time than other processes. A niceness of -20 is the highest priority and 19 is the lowest priority. The default niceness for processes is inherited from its parent process and is usually 0.

Use and effect[]

nice becomes useful when several processes are demanding more resources than the CPU can provide. In this state, a higher-priority process will get a larger chunk of the CPU time than a lower-priority process. Only the superuser (root) may set the niceness to a lower value (i.e. a higher priority). On Linux it is possible to change /etc/security/limits.conf to allow other users or groups to set low nice values.[1]

If a user wanted to compress a large file without slowing down other processes, they might run the following:

$ nice -n 19 tar cvzf archive.tgz largefile

The exact mathematical effect of setting a particular niceness value for a process depends on the details of how the scheduler is designed on that implementation of Unix. A particular operating system's scheduler will also have various heuristics built into it (e.g. to favor processes that are mostly I/O-bound over processes that are CPU-bound). As a simple example, when two otherwise identical CPU-bound processes are running simultaneously on a single-CPU Linux system, each one's share of the CPU time will be proportional to 20 − p, where p is the process' priority. Thus a process, run with nice +15, will receive 25% of the CPU time allocated to a normal-priority process: (20 − 15)/(20 − 0) = 0.25.[2] On the BSD 4.x scheduler, on the other hand, the ratio in the same example is about ten to one.[citation needed]

Similar commands[]

The related renice program can be used to change the priority of a process that is already running.[3]

Linux also has an ionice program, which affects scheduling of I/O rather than CPU time.[4]

Etymology[]

The name "nice" comes from the fact that the program's purpose is to modify a process niceness value. The true priority, used to decide how much CPU time to concede to each process, is calculated by the kernel process scheduler from a combination of the different processes' niceness values and other data, such as the amount of I/O done by each process.

The name "niceness" originates from the idea that a process with a higher niceness value is "nicer" to other processes in the system:

This is why the nice number is usually called niceness: a job with a high niceness is very kind to the users of your system (i.e., it runs at low priority), while a job with little niceness utilises more of the CPU. The term "niceness" could be considered awkward. Unfortunately, it's the only term that is both accurate (nice numbers are used to compute the priorities but are not the priorities themselves) and avoids horrible circumlocutions ("increasing the priority means lowering the priority...").[5]

See also[]

References[]

  1. ^ limits.conf(5) – Linux File Formats Manual
  2. ^ College, Abraham Silberschatz, Yale University, Peter Baer Galvin, , Greg Gagne, Westminster; Baer Galvin, Peter; Gagne, Greg (2013). Operating system concepts (Ninth ed.). Hoboken, N.J: Wiley. p. 294. ISBN 978-1-118-06333-0.
  3. ^ renice(1) – Linux General Commands Manual
  4. ^ ionice(1) – Linux General Commands Manual
  5. ^ Jerry Peek, Shelley Powers, Tim O'Reilly and Mike Loukides (2002). Unix Power Tools. O'Reilly, p. 507.

External links[]

  • nice: invoke a utility with an altered nice value – Commands & Utilities Reference, The Single UNIX Specification, Issue 7 from The Open Group
Retrieved from ""