LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Uninstalling programs (https://www.linuxquestions.org/questions/linux-newbie-8/uninstalling-programs-66955/)

alofatti 06-20-2003 07:59 PM

Uninstalling programs
 
Hello.

I would appreciate help in this topic since my knowledge in Linux is still quite low.
How do you uninstall a program which was installed with the standard ./configure, make and make install process (that is, no RPM or things like that)?
Thank you for your time.

jailbait 06-20-2003 09:06 PM

checkinstall
 
I use checkinstall to install source packages as rpms. You use the following command sequence:

./configure
make
checkinstall

checkinstall will create a Debian, RPM, or Slackware package. Then you install that package. When you want to remove it you use rpm -e to uninstall the package.

To remove programs that you have already installed with make install you install the package a second time with checkinstall. Then remove it with rpm -e

You can download checkinstall from:

http://asic-linux.com.mx/~izto/checkinstall/

alofatti 06-20-2003 09:45 PM

Thank you very much, I will start looking that tool.

contrasutra 06-20-2003 09:50 PM

try going into the source directory and typing "make uninstall". That works like 7/10 times. But it relies on the programmer providing that feature. I still recommend checkinstall though.


All times are GMT -5. The time now is 02:54 PM.