Find the answer to your Linux question:
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?...
  1. #1
    Linux 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?

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    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:

    Code:
    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? 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

  3. #3
    Linux Newbie
    Join Date
    Oct 2007
    Posts
    117
    Hi, thanks for your reply. It is very informative.. Thank you

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...