what is the pid for kernel process and what is the difference between kill and kill -9
process managment
Archived thread 1557748 from Bangalore Team. Markdown source: Bangalore_Team/thread_1557748_process_managment.md
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.