Results 1 to 2 of 2

Thread: process managment

  1. #1
    Join Date
    Aug 2010
    Beans
    11

    process managment

    what is the pid for kernel process
    and what is the difference between kill and kill -9

  2. #2
    Join Date
    Oct 2010
    Beans
    6

    Re: process managment

    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.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •