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...

what is the command to uninstall processes in linux?

Answer Posted / venkat palavarapu

Hi Rudra85, Your question was not clear. Try to furnishing as per my assumption.
If your looking for stop/kill the process then:
1) 1st you need to find the process PID
# ps -aux | grep <Process name>
Example:
# ps -aux | grep ssh
The OUTPUT as follows

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.1 2160 636 ? Ss Jan30 0:25 init [3]
root 2 0.0 0.0 0 0 ? S< Jan30 0:00 [migration/0]
2) # kill -9 <PID>
Example: kill -9 1

Incase your looking for uninstall the package then follow below steps:
1) # rpm -qa | less [Display all installed packages]
# yum -y remove <package>
(OR)
# rpm -e <Package>

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is grep command?

949


Write a command that will do the following: -look for all files in the current and subsequent directories with an extension c,v -strip the,v from the result (you can use sed command) -use the result and use a grep command to search for all occurrences of the word orange in the files.

1399


What is the command can be run to remove all the rules in an iptable table?

1056


You want to verify which lines in the file kickoff contain ‘bob’. Which of the following commands will accomplish this?

1008


What does chmod 755 do?

904


How do you copy in linux terminal?

1061


What are system commands?

1089


Explain the linux directory commands along with the description?

947


How does diff command work?

975


You issue the command head * what would the resulting output be?

973


Explain the linux ‘cd’ command options along with the description?

945


You wish to print a file ‘draft’ with 60 lines on a page. What command would you use?

1096


How do I change directories in linux command line?

952


What is difference between sh and bash?

1002


Can I delete .bash history?

1039