InterviewSolution
Saved Bookmarks
| 1. |
As A Administrator You Need To Terminate The Send Mail Process. How Will You Do That? |
|
Answer» FIRST you need to determine the PID of SEND mail so it can be killed. #ps -ef |GREP send mail Now you can USE kill command to TERMINATE the process associated with send mail. First you need to determine the PID of send mail so it can be killed. #ps -ef |grep send mail Now you can use kill command to terminate the process associated with send mail. |
|