Answer Posted / c sivakumar
If we want to kill a process first we have to know the
process id. We cam come to know ps or top command.
Then we have to identify the respective proce's child
process with the help of ptree command. Then we can give
kill id-1 id-2
example:- Take an example while using ps command
# ps
PID TT S TIME COMMAND
2243 pts/16 S 0:00 -csh
now we identified the PID no (2243) with the help of above
said ps command.
Then we have to give following command to know child
process_-
ptree 2243
1498 /usr/local/sbin/sshd
2062 /usr/local/sbin/sshd
2199 /usr/local/sbin/sshd
2205 -csh
2243 -csh
11535 ptree 2243
Now we can kill above said all ids.
kill 1498 2062 2199 2205 2243 11535
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Can you enlist some commonly used network commands?
Which command is used to kill the last background job?
Who command in unix operating system?
How do I search for text in vi?
What is the comma to show the space allocation of files?
What are grep patterns?
What does the md command do?
What is the pipe command?
What does the metacharacter mean?
What is s and g in sed command?
Explain command to view process running?
Does cp command overwrite files?
What does sed command do in unix?
Is there a way to erase all files in the current directory, including all its sub-directories, using only one command?
What are the differences among a system call, a library function, and a unix command?