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?

Answers were Sorted based on User's Feedback



what is the command to uninstall processes in linux?..

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

what is the command to uninstall processes in linux?..

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

what is the command to uninstall processes in linux?..

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

what is the command to uninstall processes in linux?..

Answer / sunder

#rpm -e package name*

#yum e package name*

Is This Answer Correct ?    18 Yes 10 No

what is the command to uninstall processes in linux?..

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

what is the command to uninstall processes in linux?..

Answer / 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

what is the command to uninstall processes in linux?..

Answer / anjani patel

yum remove package name

Is This Answer Correct ?    2 Yes 0 No

what is the command to uninstall processes in linux?..

Answer / ratheesh

#rpm -e package name*
# yum remove package name*

Is This Answer Correct ?    4 Yes 3 No

what is the command to uninstall processes in linux?..

Answer / ravi

yum remove <packagename>* -y

eg:yum remove sendmail* -y

y means with yes confirmation

Is This Answer Correct ?    1 Yes 0 No

what is the command to uninstall processes in linux?..

Answer / sachin tendulkar

# rpm rm -rf package name*
# yum remove package name*

Is This Answer Correct ?    10 Yes 10 No

Post New Answer

More Linux Commands Interview Questions

How do I know my shell?

0 Answers  


what is major and minor?

2 Answers   IBM,


What is cpu in top command?

0 Answers  


why is the tar command used?

0 Answers  


What is the symbol of linux?

0 Answers  


Send me some of the commands being used in linux

5 Answers   Aurobindo, Dr Reddys, IBM, Reddy Labs,


script is like x=10; y=20; [$x-ne$y]; echo $ please give me output.

2 Answers   Amdocs, Google,


what is "ls* " is run options are 1) x 2).x 3) hidden 4) no disply tell exact answer.

6 Answers   Google,


What is DISM command?

0 Answers  


How do I check cpu usage?

0 Answers  


if i run ls command it will show me the junk output what is problem and how to resolve it

2 Answers   BPO,


what is the command To print script arguments

4 Answers   Google,


Categories