Which priority has the process?how do u view?

Answers were Sorted based on User's Feedback



Which priority has the process?how do u view?..

Answer / ajit mohan b

Each process has a niceness value associated with it, which
is what the kernel uses to determine which processes require
more processor time than others. The higher the nice value,
the lower the priority of the process. In other words, the
“nicer” the program, the less CPU it will try to take from
other processes; programs that are less nice tend to demand
more CPU time than other programs that are nicer.
The priority is noted by a range of -20 (the highest) to 20
(the lowest). Using ps, you can see the current nice value
of all programs:
# ps axl

F UID PID PPID PRI NI VSZ RSS WCHAN STAT TTY
TIME COMMAND
4 0 1 0 16 0 2648 112 - S ?
0:01 init [3]
1 0 2 1 34 19 0 0 ksofti SN ?
0:02 [ksoftirqd/0]
5 0 3 1 10 -5 0 0 worker S< ?
0:00 [events/0]
You can see that init has a nice value of 0, while other
kernel tasks associated with PID 2 and 3 have a nice value
of 19 and -5 respectively.
Typically, a program inherits its nice value from its
parent; this prevents low priority processes from spawning
high priority children.

Is This Answer Correct ?    20 Yes 0 No

Which priority has the process?how do u view?..

Answer / amit

every process has priority to view it the cmd are:-

#ps
#top

Is This Answer Correct ?    7 Yes 0 No

Which priority has the process?how do u view?..

Answer / gokul

nice command is used to find the priority

Is This Answer Correct ?    4 Yes 6 No

Post New Answer

More Linux Commands Interview Questions

What is the difference between cd and cd in linux?

0 Answers  


have you ever got warning message from unix admin that file system running out of space or not enough disk space?what will u do?

5 Answers   HP,


What is file and example?

0 Answers  


How do I find previous commands in linux?

0 Answers  


How do you create a file in linux?

0 Answers  


How do I run a bash script in linux?

0 Answers  


What does the following command line produce? Explain each aspect of this line. $ (date ; ps -ef | awk {print $1}' | sort | uniq | wc -l ) >> Activity.log

4 Answers   Cisco,


What is mkdir?

0 Answers  


What is the command to remove Lvm ,Pv and vg

12 Answers   Tech Mahindra, TNS,


You have a computer with 80 GB hard disk and Ubuntu 8.04 is installed on entire hard disk. Now you have to create a seprate partition for Windows OS and Install Win Xp as Dual boot. write down the steps involed along with the commands.

8 Answers   Bhel, Indian Navy, Tata Steel Limited,


What is the command to delete a file linux?

0 Answers  


difference between Tcp and udp

5 Answers  


Categories