what is the command to uninstall processes in linux?
Answers were Sorted based on User's Feedback
Answer / rallapalli
Uninstall processes means to kill the processes. I think u
have confused.
#kill -9 <pid>
pid: process id
#pkill <command name>
Is This Answer Correct ? | 55 Yes | 9 No |
Answer / khushiram
first find which package you want unistall
than rpm -e sendmail* (this is the package name)
or
yum e sendmail* (than package name)
Is This Answer Correct ? | 38 Yes | 18 No |
Answer / venkat
if u r using rhel4
use this command
rpm -e packagename*
if u r using rhel5
use this command
yum remove packagename* -y
Is This Answer Correct ? | 14 Yes | 4 No |
Answer / kuppusamy
Through using kill command one can terminate the process
which is running in linux.
One more command also there pkill there.
The main diffference is in kill you have to mention process
ID. In pkill you have to mention the process name.
Is This Answer Correct ? | 8 Yes | 0 No |
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 |
Answer / ratheesh
#rpm -e package name*
# yum remove package name*
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / ravi
yum remove <packagename>* -y
eg:yum remove sendmail* -y
y means with yes confirmation
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sachin tendulkar
# rpm rm -rf package name*
# yum remove package name*
Is This Answer Correct ? | 10 Yes | 10 No |
How do I check disk space in bash?
What language is clang written in?
In order to improve your system’s security you decide to implement shadow passwords. What command should you use?
what is soft mount and hard mount? i have to make permanent nfs mount permanent what shall i do?
what is the command to make a process to run in the background from foreground?
To move /home/ben/memos dir in /home/bob/memos, what is the result by mv /home/ben/memos /home/bob
If we transfer 100 files by ftp to remote server, how to know the files are successfully transfer or some file are not transferred?
How do I start ms dos?
What is clang format?
What is the makefile in c?
What is mkdir p?
Any one example of uninteruptable sleeping process?