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
What is linux pwd (print working directory) command?
What is option in linux command?
How can you check the amount of lines in a file?
In order to improve your system’s security you decide to implement shadow passwords. What command should you use?
Which of the following tasks cannot be accomplished with the touch command?
How do I check storage on linux?
How do you do nslookup?
Why is it called bash?
What is finger in networking?
Explain the free command.
How to root mirror in linux?
What is difference between egrep and grep?
Which of the Commands delete the files from the /tmp directory, issued by non-root user?
Which command would you use to create a file system on a new hard drive?
What is mkdir p linux?