Results 1 to 3 of 3
Hi,
i have install a apache http server. How do i uninstall the apache if in the first place i install using the source file?...
- 12-19-2007 #1Linux Newbie
- Join Date
- Oct 2007
- Posts
- 117
How to uninstall from source
Hi,
i have install a apache http server. How do i uninstall the apache if in the first place i install using the source file?
- 12-19-2007 #2
Uninstalling the programs you've compiled yourself isn't as easy as uninstalling programs you've installed with a package manager, like rpm or deb or pkgtool.
If you want to uninstall the software you've compiled yourself, do the obvious: do some old-fashioned RTFM'ig. Read the documentation that came with your software package and see if it says anything about uninstalling. If it doesn't, you can start pulling your hair out.
If you didn't delete your Makefile, you may be able to remove the program by doing a make uninstall:
If you see weird text scrolling on your screen (but at this point you've probably got used to weird text filling the screen?Code:make uninstall
that's a good sign. If make starts complaining at you, that's a bad sign. Then you'll have to remove the program files manually.
If you know where the program was installed, you'll have to manually delete the installed files or the directory where your program is. If you have no idea where all the files are, you'll have to read the Makefile and see where all the files got installed, and then delete them.It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-19-2007 #3Linux Newbie
- Join Date
- Oct 2007
- Posts
- 117
Hi, thanks for your reply. It is very informative.. Thank you


Reply With Quote