InterviewSolution
| 1. |
What Do You Type To Stop A Hung Process That Resists The Standard Attempts To Shut It Down? |
|
Answer» The kill command by itself tries to allow a PROCESS to exit cleanly. You TYPE kill -9 PID, on the other HAND, to abruptly stop a process that will not quit by any other means. Also, pressing CtrI+C works for many programs. Answers b and d are only valid in some contexts, and EVEN in those contexts will not work on a hung process. The kill command by itself tries to allow a process to exit cleanly. You type kill -9 PID, on the other hand, to abruptly stop a process that will not quit by any other means. Also, pressing CtrI+C works for many programs. Answers b and d are only valid in some contexts, and even in those contexts will not work on a hung process. |
|