PDA

View Full Version : process managment



abhishek.biradar
August 21st, 2010, 11:11 AM
what is the pid for kernel process
and what is the difference between kill and kill -9

msaravanan77
October 26th, 2010, 11:54 AM
a) what do you mean by Kernel process? are you expecting INIT. PID for init is 1.
b) By defauly kill will send the 'SIGTERM' signal to the given pid. if you use kill -9, this will send 'SIGKILL' signal to the given pid.
"kill -l" will list you the all the available signal number with name.