Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
In linux, you have process running with pid 12345, how do you terminate the process forcefully (i.e. this is usually not recommended as it will not give program chance to terminate gracefully)?
Answer
kill -SIGKILL 12345
^^^ note the -SIGKILL syntax to send the SIGKILL signal to kill the process forcefully
^^^ note above is equal to: kill -9 12345

Question
In linux, you have process running with pid 12345, how do you terminate the process forcefully (i.e. this is usually not recommended as it will not give program chance to terminate gracefully)?
Answer
?

Question
In linux, you have process running with pid 12345, how do you terminate the process forcefully (i.e. this is usually not recommended as it will not give program chance to terminate gracefully)?
Answer
kill -SIGKILL 12345
^^^ note the -SIGKILL syntax to send the SIGKILL signal to kill the process forcefully
^^^ note above is equal to: kill -9 12345
If you want to change selection, open document below and click on "Move attachment"

9. Processes, Environment Variables
press ^C. SIGQUIT (3) Quit from keyboard. Issued if you press ^D. SIGFPE (8) Floating point exception. Issued automatically to a program performing some kind of illegal mathematical operation. <span>SIGKILL (9) Kill signal. This is one of the signals that can never be caught by a process. If a process gets this signal it must quit immediately and will not perform any clean-up operations (l

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.