I stopped using the Unix process ctr + z. Then I tried to kill the process and did not work. A friend from school was recommended to use the kill -9 process_id. What is the magic combination?
|
feedback
|
migrated from stackoverflow.com May 18 '11 at 15:38
This question came from our site for professional and enthusiast programmers.
|
Just follow normal kill by a resume (SIGCONT or in shell, The signal will only be received after the process is resumed (it cannot receive the signal because... you suspended it :)) So,
to resume it if you no longer have access to the terminal or shell controlling the job | |||
|
feedback
|
kill -9 process_idis quite a poor practice. – jlliagre May 18 '11 at 20:19