Results 1 to 5 of 5

Thread: Uninstalling an application

  1. #1
    Join Date
    May 2009
    Location
    Bridgend
    Beans
    34
    Distro
    Ubuntu 10.04 Lucid Lynx

    Uninstalling an application

    Hi all.

    I know this is a very basic question. But I'm a complete beginner with ubuntu.

    So my question is, how do I un-install an application through the terminal?

    Cheers

  2. #2
    Join Date
    Jan 2006
    Beans
    Hidden!

    Re: Uninstalling an application

    With apt-get:

    sudo apt-get remove appName

    Like: sudo apt-get remove firefox

    There s a good how to here:
    http://www.debian.org/doc/manuals/ap...pt-get.en.html
    Great links: Tutorials & Tips Forum - GNOME System Administration Guide - Bash-Scripting Guide
    Remember: Please mark your thread as [ SOLVED ] if you found a working solution!

  3. #3
    Join Date
    May 2009
    Location
    Bridgend
    Beans
    34
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Uninstalling an application

    The application I want to remove is called KeePassX

    That is the way it is in the application menu. But when I try this:
    Code:
    sudo apt-get remove KeePassX
    It tells me it cant find the application.

    Code:
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    E: Couldn't find package KeePassX

  4. #4
    Join Date
    Dec 2005
    Location
    Western Australia
    Beans
    11,480
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Uninstalling an application

    You type the name of the package that the program came from into apt-get remove, you don't type the name that appears in the Applications menu.

    So you'd actually type:

    Code:
    sudo apt-get remove keepassx
    You can also use Synaptic Package Manager to remove it in the same way.

    Also note that using "apt-get" to remove a program only works if the program was installed from a Debian package or from the repositories. If you've compiled it yourself or installed it from a binary installer (.run, .sh, .bin etc) then Apt doesn't know about it.
    I try to treat the cause, not the symptom. I avoid the terminal in instructions, unless it's easier or necessary. My instructions will work within the Ubuntu system, instead of breaking or subverting it. Those are the three guarantees to the helpee.

  5. #5
    Join Date
    May 2009
    Location
    Bridgend
    Beans
    34
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Uninstalling an application

    Thats worked

    Thankyou

Tags for this Thread

Bookmarks

Posting Permissions

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