Jump to content

Removing a program compiled from source


Recommended Posts

I installed a program (safecopy) from a tar.gz file. There apears to be no 'uninstall' file for the program. If I use 'locate safecopy' will this find ALL files belonging to that program? Or only files with the word safecopy attached? I mean, when you install software does every assocciated file have the name of the program attached to it?

 

[moved from Software by spinynorman]

Link to comment
Share on other sites

to uninstall something you compiled from source, you would have to go into the directory were you extracted and compiled the source originally and do:

make uninstall

as root.

 

if you no longer have the directory you originally compiled it in, just download the same version in source form, do the same ./configure line that you used original (i.e. ./configure --prefix=/usr) and then do the make uninstall command.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...