Hi all,
Which context both signal { SIGTERM and SIGKILL } differs. kill sends SIGTERM. kill -9 sends SIGKILL. Both are terminating the process. What is the notable difference then?..
Regards -Jelari-
The big diference, is that you can't ignore the SIGKILL...
SIGTERM you can catch and do wathever you want, like doing a clean exit (freeing allocated resources, etc).
The big diference, is that
The big diference, is that you can't ignore the SIGKILL...
SIGTERM you can catch and do wathever you want, like doing a clean exit (freeing allocated resources, etc).