uninstalling linux apps

This is a discussion about uninstalling linux apps in the Everything Linux category; How do i uninstall rpms or source code which i have just installed?

Everything Linux 1798 This topic was started by ,


data/avatar/default/avatar05.webp

500 Posts
Location -
Joined 2004-04-06
How do i uninstall rpms or source code which i have just installed?

Participate in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Jun 13
Created
Jun 13
Last Response
0
Likes
1 minute
Read Time
User User
Users

Responses to this topic


data/avatar/default/avatar10.webp

2895 Posts
Location -
Joined 2002-08-30
For most packages, uninstalling rpm's;
 
rpm -e (name-of-package-to-uninstall) minus the .rpm extension.
 
For source code packages, cd into the package's gunziped directory and type;
 
make clean (enter key)
make distclean (enter key)
make uninstall (enter key)
 
Of course, consult the readme or install file for specific instructions for the source package to make sure that there are not special instructions for the package.
 
Most rpm based distros also have an uninstall utility in the media control panel, or under configure computer--->configure-->package management...that allows you to search for and uninstall an application.
[Edited by danleff on 2004-06-13 06:31:36]