Jump to content

Kill Signal

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
Crop

Crop

    Learning Programmer

  • Members
  • PipPipPip
  • 62 posts
For killing zombie and rogue processes which kill should I use? What does kill -9 mean?

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Try just using 'kill 1 <pid>' before using 9

-9 means "absolute kill signal" which forces the kernel to stop executing the process. It actually sends the process's resources to /dev/null.

The most common kill signals are 1, 2, 3, 15, and 9.