Results 1 to 8 of 8

Thread: How to uninstall a compiled gtk-splitter app

  1. #1
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Beans
    118
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    How to uninstall a compiled gtk-splitter app

    Hi,

    How do I uninstall a compiled program which doesn't have it's own uninstaller script?


    I installed gtk-splitter-2.2.1 by downloading the tar file and following the compile/install instructions included with it.

    The program didn't work so I downloaded the rpm and converted to a deb with alien. That now won't install as it says a later version already exists.

    What is my next step please?
    "...Said Deep Thought with infinite depth and majesty"

  2. #2
    Join Date
    Oct 2005
    Location
    Jacksonville, FL
    Beans
    29,420

    Re: How to uninstall a compiled gtk-splitter app

    How did you install it from source? Did you do something like

    Code:
    ./configure
    make
    sudo make install
    In the world of Linux, who needs Windows and Gates...

    Got most of my golden beans at an auction on eBay (with a couple of free drinks).

  3. #3
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Beans
    118
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: How to uninstall a compiled gtk-splitter app

    Quote Originally Posted by taurus View Post
    How did you install it from source? Did you do something like

    Code:
    ./configure
    make
    sudo make install
    Thanks for the rapid response.

    Yes, The following is from the README file and it's exactly what I did:

    Building a .deb package from source ]

    $tar -xzvf gtk-splitter-2.2.1.tar.gz
    $cd gtk-splitter-VERSION
    $./configure
    $./build_deb.sh

    [ Installing the .deb package ]

    As root:
    $dpkg -i gtk-splitter-2.2.1-i386.deb
    "...Said Deep Thought with infinite depth and majesty"

  4. #4
    Join Date
    Mar 2006
    Location
    Williams Lake
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to uninstall a compiled gtk-splitter app

    You should be able to find the package in Synaptic or at the command line type:

    Code:
    sudo apt-get purge gtk-splitter-2.2.1-i386.deb
    Easy.

    Jim

  5. #5
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Beans
    118
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: How to uninstall a compiled gtk-splitter app

    Quote Originally Posted by cariboo907 View Post
    You should be able to find the package in Synaptic or at the command line type:

    Code:
    sudo apt-get purge gtk-splitter-2.2.1-i386.deb
    Easy.

    Jim
    Thanks for the code, however it doesn't uninstall for some reason, here is the Bash output:

    Code:
    sudo apt-get purge gtk-splitter-2.2.1-i386.deb
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    E: Couldn't find package gtk-splitter-2.2.1-i386.deb
    "...Said Deep Thought with infinite depth and majesty"

  6. #6
    Join Date
    Oct 2005
    Location
    Jacksonville, FL
    Beans
    29,420

    Re: How to uninstall a compiled gtk-splitter app

    Couldn't you just uninstall it with dpkg?

    Code:
    sudo dpkg -r gtk-splitter
    In the world of Linux, who needs Windows and Gates...

    Got most of my golden beans at an auction on eBay (with a couple of free drinks).

  7. #7
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Beans
    118
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: How to uninstall a compiled gtk-splitter app

    Quote Originally Posted by taurus View Post
    Couldn't you just uninstall it with dpkg?

    Code:
    sudo dpkg -r gtk-splitter
    Thanks! That worked and the new one is in.

    I haven't used dpkg in at least a year, I've managed to use only .deb files and Synaptic, I know to use one or the other as they dpkg and Synaptic don't communicate, and so it hadn't occured to me to use it.
    "...Said Deep Thought with infinite depth and majesty"

  8. #8
    Join Date
    Apr 2005
    Location
    Glasgow, Scotland
    Beans
    1,642

    Re: How to uninstall a compiled gtk-splitter app

    The package is called gtk-splitter, so sudo apt-get purge gtk-splitter would have worked.

    Quote Originally Posted by Mega_Fauna View Post
    I haven't used dpkg in at least a year, I've managed to use only .deb files and Synaptic, I know to use one or the other as they dpkg and Synaptic don't communicate, and so it hadn't occured to me to use it.
    That's not quite the case. dpkg is the program that is called by apt (or a frontend like Synaptic) which depackages Debian packages (hence the name).
    A Fedora user

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
  •