LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-22-2007, 05:05 PM   #1
adam_blackice
Member
 
Registered: Apr 2006
Location: /*Egypt */ //cairo
Distribution: Ubuntu 7.04 , SLED 10 , Fedora , RHEL 5
Posts: 312

Rep: Reputation: 32
how do i uninstall .tar.gz software packages


hello all .....,

all i wanti to know is HOWTO uninstall .tar.gz software packegs cause i want to uninstall an amsn package that i installed >.......

i'v tried every thing i go to the source package and i make uninstall after i run the ./configure script and there is nothing happened an this is every thing >>>

PHP Code:
 root@adam-laptop:~# which amsn 
/usr/bin/amsn 
PHP Code:
 root@adam-laptop:/home/adam/Sources/Net/amsn# cd amsn-0.96/
root@adam-laptop:/home/adam/Sources/Net/amsn/amsn-0.96# ./configure
checking for prefix by checking for wish... /usr/bin/wish
checking 
for gcc... gcc
checking 
for C compiler default output file name... a.out
checking whether the C compiler works
... yes
checking whether we are cross compiling
... no
checking 
for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler
... yes
checking whether gcc accepts 
-g... yes
checking 
for gcc option to accept ANSI C... none needed
checking 
for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g
++ accepts -g... yes
checking tcl build dir
... using tcl library in /usr/lib/tcl8.4
checking tk build dir
... using tk library in /usr/lib/tk8.4
checking 
for main in -lstdc++... yes
checking how to run the C preprocessor
... gcc -E
checking 
for X... libraries headers 
checking 
for gethostbyname... yes
checking 
for connect... yes
checking 
for remove... yes
checking 
for shmat... yes
checking 
for IceConnectionNumber in -lICE... yes
checking 
for egrep... grep -E
checking 
for ANSI C header files... yes
checking 
for sys/types.h... yes
checking 
for sys/stat.h... yes
checking 
for stdlib.h... yes
checking 
for string.h... yes
checking 
for memory.h... yes
checking 
for strings.h... yes
checking 
for inttypes.h... yes
checking 
for stdint.h... yes
checking 
for unistd.h... yes
checking 
for png_read_info in -lpng... yes
checking png
.h usability... yes
checking png
.h presence... yes
checking 
for png.h... yes
checking 
for jpeg_CreateDecompress in -ljpeg... yes
checking jpeglib
.h usability... yes
checking jpeglib
.h presence... yes
checking 
for jpeglib.h... yes
checking jerror
.h usability... yes
checking jerror
.h presence... yes
checking 
for jerror.h... yes
checking 
for ftello... yes
checking 
for fseeko... yes
checking 
for getpt... yes
checking 
for strcasestr... yes
checking 
for memmem... yes
checking 
for dlopen... no
checking 
for pthread_create in -lpthread... yes
checking 
if mmx should be used... yes
configure
creating ./config.status
config
.statuscreating Makefile
config
.statuscreating utils/linux/capture/config.h
config
.statusutils/linux/capture/config.h is unchanged

compile time options summary
============================

    
X11          yes
    Tcl          
8.4
    TK           
8.4
    DEBUG        
no
    
STATIC       : no

root
@adam-laptop:/home/adam/Sources/Net/amsn/amsn-0.96# make
makeNothing to be done for `build'.
root@adam-laptop:/home/adam/Sources/Net/amsn/amsn-0.96# make uninstall
make: *** No rule to make target 
`uninstall'.  Stop. 
any body can help me so i can uninstall any .tar.gz package ?>?

is the only way is to do whereis command to know where the package is located
adam@adam-laptop:~$ whereis amsn
amsn: /usr/bin/amsn /usr/X11R6/bin/amsn /usr/bin/X11/amsn /usr/share/amsn

and make rm -rf to remove the package location ?? !!!

Last edited by adam_blackice; 02-22-2007 at 05:29 PM.
 
Old 02-22-2007, 05:43 PM   #2
dxqcanada
Member
 
Registered: Sep 2006
Location: Canada
Distribution: Gentoo
Posts: 702

Rep: Reputation: 43
It appears that you have unpacked the tar.gz file ...
then you ran "configure" ...
then you tried to run "make" ...

it does not appear that make "made" any binaries
normally after make you would run "make install" to actually copy the binaries onto your system.

I do not think that anything was installed.
 
Old 02-22-2007, 06:45 PM   #3
adam_blackice
Member
 
Registered: Apr 2006
Location: /*Egypt */ //cairo
Distribution: Ubuntu 7.04 , SLED 10 , Fedora , RHEL 5
Posts: 312

Original Poster
Rep: Reputation: 32
mmmmm !

by the way i have amsn is installed on the system and that is indicate by which command and where is

all i need to know how to uninstall it ? >>> !
 
Old 02-22-2007, 06:55 PM   #4
dxqcanada
Member
 
Registered: Sep 2006
Location: Canada
Distribution: Gentoo
Posts: 702

Rep: Reputation: 43
Ahh, must have skipped that part in your post.

If "make uninstall" says no rule ... then the builder of the source did not code a method to remove the application.

You will have to do this by hand.

You might want to run "make install" again and notice what files are being copied to your system .... to ensure that you have the names of all the files that were installed.
 
Old 02-22-2007, 07:04 PM   #5
adam_blackice
Member
 
Registered: Apr 2006
Location: /*Egypt */ //cairo
Distribution: Ubuntu 7.04 , SLED 10 , Fedora , RHEL 5
Posts: 312

Original Poster
Rep: Reputation: 32
thanx for your replay but the operation of notice the files which copied to system itis very hard :S

so what u think about this stuff ?

is the only way is to do whereis command to know where the package is located
adam@adam-laptop:~$ whereis amsn
amsn: /usr/bin/amsn /usr/X11R6/bin/amsn /usr/bin/X11/amsn /usr/share/amsn

and make rm -rf to remove the package location ?? !!!
 
Old 02-22-2007, 10:46 PM   #6
adam_blackice
Member
 
Registered: Apr 2006
Location: /*Egypt */ //cairo
Distribution: Ubuntu 7.04 , SLED 10 , Fedora , RHEL 5
Posts: 312

Original Poster
Rep: Reputation: 32
hey any body can help me in that !
 
Old 02-22-2007, 11:56 PM   #7
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
It will not help you now but in the future use something like checkinstall instead of make install. It files the install with the package manager so one can uninstall it. It works very well with Fedora Core not sure about your distros.

Lazlow
 
Old 02-23-2007, 12:20 AM   #8
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
I'm surprised that there is no "make uninstall" target. Read through the Makefile and see if they call the same thing something else. Sometimes the word "erase" is used, as in the -e (erase) option to remove an rpm package.

If you know where the amsn binary is you could try using the find command to locate any files under /usr that where created within a few minutes of the main binary. You know that the amsn directory contains such files, but there could also be libraries in /usr/lib and maybe a configuration file in /etc/.
 
Old 02-23-2007, 07:34 AM   #9
waelaltaqi
Member
 
Registered: Sep 2005
Location: USA, TN
Distribution: CentOS & Ubuntu for Desktop
Posts: 454

Rep: Reputation: 31
cd into the amsn package directory and try to read the README on INSTALL file. there might be an option that will remove the binaries from the system using make. make uninstall is not a valid option with your package. if the README or the INSTALL files didn't list any way to uninstall do the following:

Code:
updatedb 
locate amsn*
updatedb will build an index for all files you have on your system for faster file search. locate command will search through the index for requested files.
after you locate amsn files you can remove them by hand and should take care of it.
please post the reason you want to uninstall the package.
 
Old 02-23-2007, 07:56 AM   #10
adam_blackice
Member
 
Registered: Apr 2006
Location: /*Egypt */ //cairo
Distribution: Ubuntu 7.04 , SLED 10 , Fedora , RHEL 5
Posts: 312

Original Poster
Rep: Reputation: 32
first thanx for ur kind replay

i want to uninstall it to make an fresh new installation for the package

when i did locate amsn* it gives me a whole punsh of packages here is the output

/usr/share/amsn/skins/amsn-for-mac/smileys/Lightning.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Light_bulb.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Messenger.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Mobile_phone.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Money.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Nerd_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Note.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/null
/usr/share/amsn/skins/amsn-for-mac/smileys/Open_mouthed_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/party_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Pizza.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Plate.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/rain.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Rainbow.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Red_heart.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Red_lips.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Red_rose.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Right_hug.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Sad_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Sarcastic_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Secret_telling_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Sick_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Sleeping_half-moon.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Sleepy_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Smiley_with_tonque_out.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Snail.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Soccer_ball.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Star.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Sun.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Surprised_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Telephone_receiver.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Thinking_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Thumbs_down.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Thumbs_up.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Turtle.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Umbrella.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Vampire_bat.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/What_The_Fuck.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Wilted_rose.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Winking_smiley.gif
/usr/share/amsn/skins/amsn-for-mac/smileys/Xbox.gif
/usr/share/amsn/skins/amsn-for-mac/sounds
/usr/share/amsn/skins/amsn-for-mac/sounds/alarm.wav
/usr/share/amsn/skins/amsn-for-mac/sounds/newemail.wav
/usr/share/amsn/skins/amsn-for-mac/sounds/null
/usr/share/amsn/skins/amsn-for-mac/sounds/offline.wav
/usr/share/amsn/skins/amsn-for-mac/sounds/online.wav
/usr/share/amsn/skins/amsn-for-mac/sounds/type.wav
/usr/share/amsn/skins/amsn-for-mac/winicons
/usr/share/amsn/skins/amsn-for-mac/winicons/away.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/bossmode.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/brb.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/busy.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/hidden.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/inactive.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/lunch.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/msn.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/offline.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/online.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/phone.ico
/usr/share/amsn/skins/amsn-for-mac/winicons/unread.ico
/usr/share/amsn/utils
/usr/share/amsn/utils/base64
/usr/share/amsn/utils/base64/base64.tcl
/usr/share/amsn/utils/base64/pkgIndex.tcl
/usr/share/amsn/utils/base64/uuencode.tcl
/usr/share/amsn/utils/base64/yencode.tcl
/usr/share/amsn/utils/drawboard
/usr/share/amsn/utils/drawboard/grid.png
/usr/share/amsn/utils/drawboard/pkgIndex.tcl
/usr/share/amsn/utils/drawboard/drawboard.tcl
/usr/share/amsn/utils/framec
/usr/share/amsn/utils/framec/pkgIndex.tcl
/usr/share/amsn/utils/framec/framec.tcl
/usr/share/amsn/utils/http2.4
/usr/share/amsn/utils/http2.4/pkgIndex.tcl
/usr/share/amsn/utils/http2.4/http.tcl
/usr/share/amsn/utils/pixmapscroll
/usr/share/amsn/utils/pixmapscroll/vertical
/usr/share/amsn/utils/pixmapscroll/vertical/trough.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbottom.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidertop_disabled.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbody_pressed.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidertop_hover.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow1_pressed.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidergrip_pressed.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow1_hover.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidergrip_disabled.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow1.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidergrip.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidertop.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbody_hover.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow2_hover.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbody.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbody_disabled.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbottom_hover.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow2_pressed.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbottom_disabled.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidertop_pressed.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow2.gif
/usr/share/amsn/utils/pixmapscroll/vertical/slidergrip_hover.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow2_disabled.gif
/usr/share/amsn/utils/pixmapscroll/vertical/arrow1_disabled.gif
/usr/share/amsn/utils/pixmapscroll/vertical/sliderbottom_pressed.gif
/usr/share/amsn/utils/pixmapscroll/pkgIndex.tcl
/usr/share/amsn/utils/pixmapscroll/test.tcl
/usr/share/amsn/utils/pixmapscroll/pixmapscroll.tcl
/usr/share/amsn/utils/pixmapscroll/horizontal
/usr/share/amsn/utils/pixmapscroll/horizontal/trough.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbottom.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidertop_disabled.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbody_pressed.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidertop_hover.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow1_pressed.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidergrip_pressed.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow1_hover.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidergrip_disabled.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow1.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidergrip.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidertop.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbody_hover.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow2_hover.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbody.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbody_disabled.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbottom_hover.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow2_pressed.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbottom_disabled.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidertop_pressed.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow2.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/slidergrip_hover.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow2_disabled.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/arrow1_disabled.gif
/usr/share/amsn/utils/pixmapscroll/horizontal/sliderbottom_pressed.gif
/usr/share/amsn/utils/pixmapmenu
/usr/share/amsn/utils/pixmapmenu/pkgIndex.tcl
/usr/share/amsn/utils/pixmapmenu/bindings.tcl
/usr/share/amsn/utils/pixmapmenu/makecommands.tcl
/usr/share/amsn/utils/pixmapmenu/pixmapmenu.tcl
/usr/share/amsn/utils/pixmapmenu/menushell.tcl
/usr/share/amsn/utils/pixmapmenu/entries.tcl
/usr/share/amsn/utils/contentmanager
/usr/share/amsn/utils/contentmanager/pkgIndex.tcl
/usr/share/amsn/utils/contentmanager/contentmanager.tcl
/usr/share/amsn/utils/scalable-bg
/usr/share/amsn/utils/scalable-bg/pkgIndex.tcl
/usr/share/amsn/utils/scalable-bg/test.tcl
/usr/share/amsn/utils/scalable-bg/scalable-bg.tcl
/usr/share/amsn/utils/sha1
/usr/share/amsn/utils/sha1/pkgIndex.tcl
/usr/share/amsn/utils/sha1/sha1.tcl
/usr/share/amsn/utils/snit
/usr/share/amsn/utils/snit/pkgIndex.tcl
/usr/share/amsn/utils/snit/snit83.tcl
/usr/share/amsn/utils/snit/snit_tcl83_utils.tcl
/usr/share/amsn/utils/snit/snit2.tcl
/usr/share/amsn/utils/snit/snit.tcl
/usr/share/amsn/utils/BWidget-1.7.0
/usr/share/amsn/utils/BWidget-1.7.0/progressbar.tcl
/usr/share/amsn/utils/BWidget-1.7.0/titleframe.tcl
/usr/share/amsn/utils/BWidget-1.7.0/bitmap.tcl
/usr/share/amsn/utils/BWidget-1.7.0/label.tcl
/usr/share/amsn/utils/BWidget-1.7.0/arrow.tcl
/usr/share/amsn/utils/BWidget-1.7.0/scrollframe.tcl
/usr/share/amsn/utils/BWidget-1.7.0/pkgIndex.tcl
/usr/share/amsn/utils/BWidget-1.7.0/aclocal.m4
/usr/share/amsn/utils/BWidget-1.7.0/lang
/usr/share/amsn/utils/BWidget-1.7.0/lang/en.rc
/usr/share/amsn/utils/BWidget-1.7.0/xpm2image.tcl
/usr/share/amsn/utils/BWidget-1.7.0/spinbox.tcl
/usr/share/amsn/utils/BWidget-1.7.0/labelframe.tcl
/usr/share/amsn/utils/BWidget-1.7.0/widget.tcl
/usr/share/amsn/utils/BWidget-1.7.0/buttonbox.tcl
/usr/share/amsn/utils/BWidget-1.7.0/configure.in
/usr/share/amsn/utils/BWidget-1.7.0/progressdlg.tcl
/usr/share/amsn/utils/BWidget-1.7.0/ChangeLog
/usr/share/amsn/utils/BWidget-1.7.0/CHANGES.txt
/usr/share/amsn/utils/BWidget-1.7.0/combobox.tcl
/usr/share/amsn/utils/BWidget-1.7.0/messagedlg.tcl
/usr/share/amsn/utils/BWidget-1.7.0/init.tcl
/usr/share/amsn/utils/BWidget-1.7.0/tree.tcl
/usr/share/amsn/utils/BWidget-1.7.0/README.txt
/usr/share/amsn/utils/BWidget-1.7.0/utils.tcl
/usr/share/amsn/utils/BWidget-1.7.0/scrollw.tcl
/usr/share/amsn/utils/BWidget-1.7.0/wizard.tcl
/usr/share/amsn/utils/BWidget-1.7.0/labelentry.tcl
/usr/share/amsn/utils/BWidget-1.7.0/mainframe.tcl
/usr/share/amsn/utils/BWidget-1.7.0/notebook.tcl
/usr/share/amsn/utils/BWidget-1.7.0/images
/usr/share/amsn/utils/BWidget-1.7.0/images/minus.xbm
/usr/share/amsn/utils/BWidget-1.7.0/images/openfold.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/warning.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/plus.xbm
/usr/share/amsn/utils/BWidget-1.7.0/images/new.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/paste.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/overstrike.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/opmove.xbm
/usr/share/amsn/utils/BWidget-1.7.0/images/info.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/hourglass.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/opcopy.xbm
/usr/share/amsn/utils/BWidget-1.7.0/images/underline.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/target.xbm
/usr/share/amsn/utils/BWidget-1.7.0/images/print.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/oplink.xbm
/usr/share/amsn/utils/BWidget-1.7.0/images/passwd.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/redo.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/open.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/italic.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/save.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/undo.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/palette.gif
/usr/share/amsn/utils/BWidget-1.7.0/images/question.gif
/usr/share/amsn/utils/BWidget-1.7.0/button.tcl
/usr/share/amsn/utils/BWidget-1.7.0/dragsite.tcl
/usr/share/amsn/utils/BWidget-1.7.0/panedw.tcl
/usr/share/amsn/utils/BWidget-1.7.0/separator.tcl
/usr/share/amsn/utils/BWidget-1.7.0/listbox.tcl
/usr/share/amsn/utils/BWidget-1.7.0/LICENSE.txt
/usr/share/amsn/utils/BWidget-1.7.0/pagesmgr.tcl
/usr/share/amsn/utils/BWidget-1.7.0/scrollview.tcl
/usr/share/amsn/utils/BWidget-1.7.0/dropsite.tcl
/usr/share/amsn/utils/BWidget-1.7.0/color.tcl
/usr/share/amsn/utils/BWidget-1.7.0/dialog.tcl
/usr/share/amsn/utils/BWidget-1.7.0/font.tcl
/usr/share/amsn/utils/BWidget-1.7.0/Makefile.in
/usr/share/amsn/utils/BWidget-1.7.0/passwddlg.tcl
/usr/share/amsn/utils/BWidget-1.7.0/dynhelp.tcl
/usr/share/amsn/utils/BWidget-1.7.0/entry.tcl
/usr/share/amsn/utils/dpbrowser
/usr/share/amsn/utils/dpbrowser/pkgIndex.tcl
/usr/share/amsn/utils/dpbrowser/dpbrowser.tcl
/usr/share/amsn/utils/tclsoap1.6.7
/usr/share/amsn/utils/tclsoap1.6.7/XMLRPC.tcl
/usr/share/amsn/utils/tclsoap1.6.7/ftp.tcl
/usr/share/amsn/utils/tclsoap1.6.7/rpcvar.tcl
/usr/share/amsn/utils/tclsoap1.6.7/beep.tcl
/usr/share/amsn/utils/tclsoap1.6.7/pkgIndex.tcl
/usr/share/amsn/utils/tclsoap1.6.7/SOAP.tcl
/usr/share/amsn/utils/tclsoap1.6.7/interop
/usr/share/amsn/utils/tclsoap1.6.7/interop/soapinteropC.tcl
/usr/share/amsn/utils/tclsoap1.6.7/interop/pkgIndex.tcl
/usr/share/amsn/utils/tclsoap1.6.7/interop/soapinteropB.tcl
/usr/share/amsn/utils/tclsoap1.6.7/interop/silab.tcl
/usr/share/amsn/utils/tclsoap1.6.7/interop/soapinterop.tcl
/usr/share/amsn/utils/tclsoap1.6.7/http.tcl
/usr/share/amsn/utils/tclsoap1.6.7/utils.tcl
/usr/share/amsn/utils/tclsoap1.6.7/https.tcl
/usr/share/amsn/utils/tclsoap1.6.7/smtp.tcl
/usr/share/amsn/utils/tclsoap1.6.7/xpath.tcl
/usr/share/amsn/utils/tclsoap1.6.7/SOAP-domain.tcl
/usr/share/amsn/utils/tclsoap1.6.7/SOAP-CGI.tcl
/usr/share/amsn/utils/log
/usr/share/amsn/utils/log/loggerUtils.tcl
/usr/share/amsn/utils/log/msgs
/usr/share/amsn/utils/log/msgs/en.msg
/usr/share/amsn/utils/log/pkgIndex.tcl
/usr/share/amsn/utils/log/log.tcl
/usr/share/amsn/utils/log/logger.tcl
/usr/share/amsn/utils/log/loggerAppender.tcl
/usr/share/amsn/utils/uri
/usr/share/amsn/utils/uri/uri.tcl
/usr/share/amsn/utils/uri/pkgIndex.tcl
/usr/share/amsn/utils/uri/urn-scheme.tcl
/usr/share/amsn/utils/tcldom
/usr/share/amsn/utils/tcldom/dom.tcl
/usr/share/amsn/utils/tcldom/dommap.tcl
/usr/share/amsn/utils/tcldom/pkgIndex.tcl
/usr/share/amsn/utils/tcldom/xmlswitch.tcl
/usr/share/amsn/utils/Tclxml
/usr/share/amsn/utils/Tclxml/libTclxml3.1.so
/usr/share/amsn/utils/Tclxml/pkgIndex.tcl
/usr/share/amsn/utils/Tclxml/sgml-8.1.tcl
/usr/share/amsn/utils/Tclxml/tclparser-8.0.tcl
/usr/share/amsn/utils/Tclxml/xml-8.0.tcl
/usr/share/amsn/utils/Tclxml/xpath.tcl
/usr/share/amsn/utils/Tclxml/sgmlparser.tcl
/usr/share/amsn/utils/Tclxml/xml-8.1.tcl
/usr/share/amsn/utils/Tclxml/xml__tcl.tcl
/usr/share/amsn/utils/Tclxml/sgml-8.0.tcl
/usr/share/amsn/utils/Tclxml/tclparser-8.1.tcl
/usr/share/amsn/utils/combobox
/usr/share/amsn/utils/combobox/pkgIndex.tcl
/usr/share/amsn/utils/combobox/combobox.tcl
/usr/share/amsn/utils/webcamsn
/usr/share/amsn/utils/webcamsn/webcamsn.so
/usr/share/amsn/utils/webcamsn/pkgIndex.tcl
/usr/share/amsn/utils/TkCximage
/usr/share/amsn/utils/TkCximage/TkCximage.so
/usr/share/amsn/utils/TkCximage/pkgIndex.tcl
/usr/share/amsn/utils/linux
/usr/share/amsn/utils/linux/capture
/usr/share/amsn/utils/linux/capture/capture.so
/usr/share/amsn/utils/linux/capture/pkgIndex.tcl
/usr/share/amsn/utils/linux/capture/libng
/usr/share/amsn/utils/linux/capture/libng/plugins
/usr/share/amsn/utils/linux/capture/libng/plugins/drv0-v4l2.so
/usr/share/amsn/utils/linux/capture/libng/plugins/drv1-v4l.so
/usr/share/amsn/utils/linux/linflash
/usr/share/amsn/utils/linux/linflash/flash.so
/usr/share/amsn/utils/linux/linflash/pkgIndex.tcl
/usr/share/amsn/utils/linux/traydock
/usr/share/amsn/utils/linux/traydock/libtray.so
/usr/share/amsn/utils/linux/traydock/pkgIndex.tcl
/usr/share/amsn/plugins
/usr/share/amsn/plugins/remind
/usr/share/amsn/plugins/remind/lang
/usr/share/amsn/plugins/remind/lang/langee
/usr/share/amsn/plugins/remind/lang/langen
/usr/share/amsn/plugins/remind/lang/langfi
/usr/share/amsn/plugins/remind/lang/langda
/usr/share/amsn/plugins/remind/lang/langit
/usr/share/amsn/plugins/remind/lang/langsv
/usr/share/amsn/plugins/remind/lang/langfr_CA
/usr/share/amsn/plugins/remind/lang/langes
/usr/share/amsn/plugins/remind/lang/langca
/usr/share/amsn/plugins/remind/lang/langfr
/usr/share/amsn/plugins/remind/plugininfo.xml
/usr/share/amsn/plugins/remind/remind.tcl
/usr/share/amsn/plugins/WebcamShooter
/usr/share/amsn/plugins/WebcamShooter/lang
/usr/share/amsn/plugins/WebcamShooter/lang/langnl
/usr/share/amsn/plugins/WebcamShooter/lang/langen
/usr/share/amsn/plugins/WebcamShooter/lang/langfi
/usr/share/amsn/plugins/WebcamShooter/lang/langit
/usr/share/amsn/plugins/WebcamShooter/lang/langsv
/usr/share/amsn/plugins/WebcamShooter/plugininfo.xml
/usr/share/amsn/plugins/WebcamShooter/camshoot.tcl
/usr/share/amsn/plugins/Nudge
/usr/share/amsn/plugins/Nudge/nudge.wav
/usr/share/amsn/plugins/Nudge/lang
/usr/share/amsn/plugins/Nudge/lang/langnl
/usr/share/amsn/plugins/Nudge/lang/langzh-TW
/usr/share/amsn/plugins/Nudge/lang/langee
/usr/share/amsn/plugins/Nudge/lang/langen
/usr/share/amsn/plugins/Nudge/lang/langtr
/usr/share/amsn/plugins/Nudge/lang/langfi
/usr/share/amsn/plugins/Nudge/lang/langpt_BR
/usr/share/amsn/plugins/Nudge/lang/langda
/usr/share/amsn/plugins/Nudge/lang/langit
/usr/share/amsn/plugins/Nudge/lang/langsv
/usr/share/amsn/plugins/Nudge/lang/langes
/usr/share/amsn/plugins/Nudge/lang/langca
/usr/share/amsn/plugins/Nudge/lang/langno
/usr/share/amsn/plugins/Nudge/lang/langfr
/usr/share/amsn/plugins/Nudge/Nudge.tcl
/usr/share/amsn/plugins/Nudge/plugininfo.xml
/usr/share/amsn/plugins/inkdraw
/usr/share/amsn/plugins/inkdraw/pixmaps
/usr/share/amsn/plugins/inkdraw/pixmaps/grid.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butgridoff.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butdraw_hover.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butgridon_hover.png
/usr/share/amsn/plugins/inkdraw/pixmaps/buttext.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butgridon.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butwipe.png
/usr/share/amsn/plugins/inkdraw/pixmaps/buttext_hover.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butwipe_hover.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butgridoff_hover.png
/usr/share/amsn/plugins/inkdraw/pixmaps/butdraw.png
/usr/share/amsn/plugins/inkdraw/plugininfo.xml
/usr/share/amsn/plugins/inkdraw/pencils
/usr/share/amsn/plugins/inkdraw/pencils/pencil1.png
/usr/share/amsn/plugins/inkdraw/pencils/pencil2.png
/usr/share/amsn/plugins/inkdraw/inkdraw.tcl
/usr/share/amsn/plugins/amsnplus
/usr/share/amsn/plugins/amsnplus/readme
/usr/share/amsn/plugins/amsnplus/Makefile
/usr/share/amsn/plugins/amsnplus/Snapshot.exe
/usr/share/amsn/plugins/amsnplus/lang
/usr/share/amsn/plugins/amsnplus/lang/langda
/usr/share/amsn/plugins/amsnplus/lang/langno
/usr/share/amsn/plugins/amsnplus/lang/langca
/usr/share/amsn/plugins/amsnplus/lang/.svn
/usr/share/amsn/plugins/amsnplus/lang/.svn/text-base
/usr/share/amsn/plugins/amsnplus/lang/.svn/props
/usr/share/amsn/plugins/amsnplus/lang/.svn/prop-base
/usr/share/amsn/plugins/amsnplus/lang/.svn/wcprops
/usr/share/amsn/plugins/amsnplus/lang/.svn/tmp
/usr/share/amsn/plugins/amsnplus/lang/.svn/tmp/text-base
/usr/share/amsn/plugins/amsnplus/lang/.svn/tmp/props
/usr/share/amsn/plugins/amsnplus/lang/.svn/tmp/prop-base
/usr/share/amsn/plugins/amsnplus/lang/.svn/tmp/wcprops
/usr/share/amsn/plugins/amsnplus/lang/langfr
/usr/share/amsn/plugins/amsnplus/lang/langit
/usr/share/amsn/plugins/amsnplus/lang/langnl
/usr/share/amsn/plugins/amsnplus/lang/langen
/usr/share/amsn/plugins/amsnplus/lang/langee
/usr/share/amsn/plugins/amsnplus/lang/langpt
/usr/share/amsn/plugins/amsnplus/lang/langes
/usr/share/amsn/plugins/amsnplus/lang/langpt_BR
/usr/share/amsn/plugins/amsnplus/plugininfo.xml
/usr/share/amsn/plugins/amsnplus/.svn
/usr/share/amsn/plugins/amsnplus/.svn/text-base
/usr/share/amsn/plugins/amsnplus/.svn/props
/usr/share/amsn/plugins/amsnplus/.svn/prop-base
/usr/share/amsn/plugins/amsnplus/.svn/wcprops
/usr/share/amsn/plugins/amsnplus/.svn/tmp
/usr/share/amsn/plugins/amsnplus/.svn/tmp/text-base
/usr/share/amsn/plugins/amsnplus/.svn/tmp/props
/usr/share/amsn/plugins/amsnplus/.svn/tmp/prop-base
/usr/share/amsn/plugins/amsnplus/.svn/tmp/wcprops
/usr/share/amsn/plugins/amsnplus/amsnplus.tcl
/usr/share/amsn/plugins/amsnplus/snapshot
/usr/share/amsn/plugins/amsnplus/snapshot.c
/usr/share/amsn/plugins/amsnplus/pixmaps
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/text-base
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/props
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/prop-base
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/wcprops
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/tmp
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/tmp/text-base
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/tmp/props
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/tmp/prop-base
/usr/share/amsn/plugins/amsnplus/pixmaps/.svn/tmp/wcprops
/usr/share/amsn/plugins/amsnplus/pixmaps/multiple_colors.gif
/usr/share/amsn/plugins/eliza
/usr/share/amsn/plugins/eliza/plugininfo.xml
/usr/share/amsn/plugins/eliza/amsneliza.tcl
/usr/share/amsn/plugins/eliza/perleliza.pl
/usr/share/amsn/plugins/bigsmileys
/usr/share/amsn/plugins/bigsmileys/plugininfo.xml
/usr/share/amsn/plugins/bigsmileys/bigsmileys.tcl
/usr/share/amsn/plugins/bigsmileys/pixmaps
/usr/share/amsn/plugins/bigsmileys/pixmaps/bigsmileysbut.png
/usr/share/amsn/plugins/bigsmileys/pixmaps/bigsmileysbut_hover.png
/usr/share/amsn/plugins/DualDisplayPicture
/usr/share/amsn/plugins/DualDisplayPicture/DualDisplayPicture.tcl
/usr/share/amsn/plugins/DualDisplayPicture/plugininfo.xml
/usr/share/amsn/plugins/music
/usr/share/amsn/plugins/music/readme.txt
/usr/share/amsn/plugins/music/lang
/usr/share/amsn/plugins/music/lang/langda
/usr/share/amsn/plugins/music/lang/langsv
/usr/share/amsn/plugins/music/lang/langfr_CA
/usr/share/amsn/plugins/music/lang/.svn
/usr/share/amsn/plugins/music/lang/.svn/text-base
/usr/share/amsn/plugins/music/lang/.svn/props
/usr/share/amsn/plugins/music/lang/.svn/prop-base
/usr/share/amsn/plugins/music/lang/.svn/wcprops
/usr/share/amsn/plugins/music/lang/.svn/tmp
/usr/share/amsn/plugins/music/lang/.svn/tmp/text-base
/usr/share/amsn/plugins/music/lang/.svn/tmp/props
/usr/share/amsn/plugins/music/lang/.svn/tmp/prop-base
/usr/share/amsn/plugins/music/lang/.svn/tmp/wcprops
/usr/share/amsn/plugins/music/lang/langhu
/usr/share/amsn/plugins/music/lang/langfr
/usr/share/amsn/plugins/music/lang/langit
/usr/share/amsn/plugins/music/lang/langen
/usr/share/amsn/plugins/music/lang/langee
/usr/share/amsn/plugins/music/lang/langes
/usr/share/amsn/plugins/music/plugininfo.xml
/usr/share/amsn/plugins/music/infoamarok
/usr/share/amsn/plugins/music/.svn
/usr/share/amsn/plugins/music/.svn/text-base
/usr/share/amsn/plugins/music/.svn/props
/usr/share/amsn/plugins/music/.svn/prop-base
/usr/share/amsn/plugins/music/.svn/wcprops
/usr/share/amsn/plugins/music/.svn/tmp
/usr/share/amsn/plugins/music/.svn/tmp/text-base
/usr/share/amsn/plugins/music/.svn/tmp/props
/usr/share/amsn/plugins/music/.svn/tmp/prop-base
/usr/share/amsn/plugins/music/.svn/tmp/wcprops
/usr/share/amsn/plugins/music/infobanshee
/usr/share/amsn/plugins/music/MusicWA
/usr/share/amsn/plugins/music/MusicWA/MusicWA.dsp
/usr/share/amsn/plugins/music/MusicWA/MusicWA.dsw
/usr/share/amsn/plugins/music/MusicWA/.svn
/usr/share/amsn/plugins/music/MusicWA/.svn/text-base
/usr/share/amsn/plugins/music/MusicWA/.svn/props
/usr/share/amsn/plugins/music/MusicWA/.svn/prop-base
/usr/share/amsn/plugins/music/MusicWA/.svn/wcprops
/usr/share/amsn/plugins/music/MusicWA/.svn/tmp
/usr/share/amsn/plugins/music/MusicWA/.svn/tmp/text-base
/usr/share/amsn/plugins/music/MusicWA/.svn/tmp/props
/usr/share/amsn/plugins/music/MusicWA/.svn/tmp/prop-base
/usr/share/amsn/plugins/music/MusicWA/.svn/tmp/wcprops
/usr/share/amsn/plugins/music/MusicWA/wa_ipc.h
/usr/share/amsn/plugins/music/MusicWA/MusicWA.c
/usr/share/amsn/plugins/music/display_and_send.scpt
/usr/share/amsn/plugins/music/inforhythmbox
/usr/share/amsn/plugins/music/music.tcl
/usr/share/amsn/plugins/music/infototem
/usr/share/amsn/plugins/music/infolisten
/usr/share/amsn/plugins/music/MusicWA.exe
/usr/share/amsn/plugins/music/pixmaps
/usr/share/amsn/plugins/music/pixmaps/.svn
/usr/share/amsn/plugins/music/pixmaps/.svn/text-base
/usr/share/amsn/plugins/music/pixmaps/.svn/props
/usr/share/amsn/plugins/music/pixmaps/.svn/prop-base
/usr/share/amsn/plugins/music/pixmaps/.svn/wcprops
/usr/share/amsn/plugins/music/pixmaps/.svn/tmp
/usr/share/amsn/plugins/music/pixmaps/.svn/tmp/text-base
/usr/share/amsn/plugins/music/pixmaps/.svn/tmp/props
/usr/share/amsn/plugins/music/pixmaps/.svn/tmp/prop-base
/usr/share/amsn/plugins/music/pixmaps/.svn/tmp/wcprops
/usr/share/amsn/plugins/music/pixmaps/notesdispic.gif
/usr/share/amsn/plugins/music/pixmaps/notespic.gif
/usr/share/amsn/plugins/music/infojuk

that means iam going to delete all of them by using hand !!!!

what about whereis command is that enough to locate the package location on system ?
thanx for u
 
Old 02-23-2007, 06:55 PM   #11
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Notice that most of those files are in the /usr/share/amsn directory. So you can delete that directory to delete all those files. There will still be the amsn binary, probably at /usr/bin/amsn or /usr/local/bin/amsn.

The libraries may be harder to find. Plus, you don't want to remove a library simply because it is a dependency, because it may be a general library that other packages depend on.

You could try the command:
ldd $(which amsn)
to list the library dependencies. You might consider leaving them if they aren't in there own subdirectory, just to be safe. If there is a /usr/lib/amsn/ directory that the install program created, then check to make sure that you delete the entry in /etc/ld.so.conf, and then run "sudo /sbin/ldconfig". If there is an /etc/ld.so.config.d/amsn file, then delete that file and run the "sudo /sbin/ldconfig" program.

You might also check $HOME/.kde/Autostart/ for an autostart link to the amsn program. If it exists, then simply delete it.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How Do You "UNINSTALL" a tar.gz file???? Make Uninstall not effective Balarabay1 SUSE / openSUSE 6 05-22-2006 09:27 PM
How do you uninstall compiled software packages? meh1 Linux - Newbie 3 02-11-2005 10:52 AM
Uninstall a tar.gz israel Linux - Software 5 02-01-2004 10:24 AM
How to uninstall tar.gz apps merlinxx Linux - General 3 03-07-2002 04:22 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:12 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration