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
What is awk good for?
Describe the zip/unzip command using gzip.
Enlist some filename manipulation commands in unix.
How do I search for a file in unix command?
What does touch command do in unix?
Who command in unix operating system?
What is “chmod” command?
What is the function of grep command in unix?
What is the use of tee command?
What happens when we execute a unix command?
Who wrote grep?
Which unix command to make a new directory?
What is s and g in sed command?
Name the various commands that are used for the user information in unix.
Is there any method to erase all files in the current directory, along with its all sub-directories, by using only one command?