Find the answer to your Linux question:
Results 1 to 4 of 4
Hi, I have had many painfull experiences of installing several programs unsuccessfully( uncompletely) due to the absence of what whats.So it's meaningless to maintain them in my system.I should eradicate ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
  1. #1
    Just Joined!
    Join Date
    Mar 2005
    Location
    Hailaar,Inner Mongolia,China
    Posts
    13

    how to uninstall softwares in Debian?

    Hi, I have had many painfull experiences of installing several programs unsuccessfully( uncompletely) due to the absence of what whats.So it's meaningless to maintain them in my system.I should eradicate them now.

    Tell me How to uninstall softwares in Debian ?

  2. #2
    Linux Guru techieMoe's Avatar
    Join Date
    Aug 2004
    Location
    Texas
    Posts
    9,496
    Code:
    apt-get remove packagename
    That only works if you installed them with apt in the first place, though. If you tried compiling from source, you can go back into the source directory for each program and type:

    Code:
    make uninstall
    Registered Linux user #270181
    TechieMoe's Tech Rants

  3. #3
    Linux Engineer
    Join Date
    Mar 2005
    Location
    Where my hat is
    Posts
    766
    And if that doesn't work?
    Registered Linux user #384279
    Vector Linux SOHO 7

  4. #4
    Linux User
    Join Date
    Jul 2004
    Location
    Poland
    Posts
    368
    Generally when managing packages in Debian I'd recommend using aptitude instead of apt-get. The big advantage of it when it comes to deinstalling is that aptitude will not only remove packages you select but also those dependant packages that are no longer necessary. If you don't like the ncurses interface you can use it from command line, much like apt-get, e.g. aptitude install pkg-name, or aptitude remove pkg-name, or aptitude purge pkg-name (which also removes configurations files of the package).
    "I don't know what I'm running from
    And I don't know where I'm running to
    There's something deep and strange inside of me I see"

Posting Permissions

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