Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How do you stop a running process?

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


Please Help Members By Posting Answers For Below Questions

Can you enlist some commonly used network commands?

1149


Which command is used to kill the last background job?

1386


Who command in unix operating system?

1184


How do I search for text in vi?

1096


What is the comma to show the space allocation of files?

1135


What are grep patterns?

1145


What does the md command do?

1189


What is the pipe command?

1240


What does the metacharacter mean?

1183


What is s and g in sed command?

1160


Explain command to view process running?

1172


Does cp command overwrite files?

1261


What does sed command do in unix?

1241


Is there a way to erase all files in the current directory, including all its sub-directories, using only one command?

1448


What are the differences among a system call, a library function, and a unix command?

1267