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

How do you run command every time a file is modified?

528


What does grep command do?

565


How do you clear the screen in linux?

533


Explain the working of command grouping?

531


What are the options of wc command?

536






Which commands are used to set a processor-intensive job to use less cpu time?

549


How do I search bash history?

495


What are linux commands useful?

575


What does bash stand for?

535


What is difference between free and available memory in linux?

502


How do I know my linux shell version?

498


What is the best cpu stress test?

481


How do I clear bash history in linux?

523


What is cpu in top command?

543


What does free command do in linux?

570