LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-27-2012, 10:27 AM   #1
tautvilas
LQ Newbie
 
Registered: Nov 2012
Posts: 15

Rep: Reputation: Disabled
cannot uninstall software from slackware 14.0


Hi, I would like to uninstall thunderbird, kmail, kde blogger tool and more. These programs do not appear as packages in
Code:
pkgtool
neither I can delete them typing i.e
Code:
removepkg thunderbird
in /usr directory.
How can I do it?

Thanks
 
Old 11-27-2012, 10:34 AM   #2
Cultist
Member
 
Registered: Feb 2010
Location: Georgia
Distribution: Slackware64 14.2
Posts: 779

Rep: Reputation: 107Reputation: 107
thunderbird's package name is mozilla-thunderbird, so you'll have to removepkg using that. KDE's blogging tool is called Blogilo (if I recall correctly), so if you have it you might need to uninstall using that package name. The others I'm not sure about.
 
Old 11-27-2012, 10:47 AM   #3
tautvilas
LQ Newbie
 
Registered: Nov 2012
Posts: 15

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Cultist View Post
thunderbird's package name is mozilla-thunderbird, so you'll have to removepkg using that. KDE's blogging tool is called Blogilo (if I recall correctly), so if you have it you might need to uninstall using that package name. The others I'm not sure about.
No, mozilla-thunderbird nor Blogilo are not the correct names to remove these programs.
 
Old 11-27-2012, 10:50 AM   #4
Cultist
Member
 
Registered: Feb 2010
Location: Georgia
Distribution: Slackware64 14.2
Posts: 779

Rep: Reputation: 107Reputation: 107
Quote:
Originally Posted by tautvilas View Post
No, mozilla-thunderbird nor Blogilo are not the correct names to remove these programs.
I just did a test with mozilla-thunderbird:

Code:
root@nova01:~# removepkg mozilla-thunderbird

Removing package /var/log/packages/mozilla-thunderbird-17.0-x86_64-1_slack14.0...
Removing files:
not sure why yours wouldn't work. Did you build a custom package yourself?
 
Old 11-27-2012, 11:00 AM   #5
tautvilas
LQ Newbie
 
Registered: Nov 2012
Posts: 15

Original Poster
Rep: Reputation: Disabled
No, I did not. I installed slackware 14.0 and that is where mozilla-thunderbird comes. That's weird
 
Old 11-27-2012, 11:08 AM   #6
TommyC7
Member
 
Registered: Mar 2012
Distribution: Slackware, CentOS, OpenBSD, FreeBSD
Posts: 530

Rep: Reputation: Disabled
Packages aren't in /usr, they're in /var/log/packages. The package name in /var/log/packages/ is what you "removepkg."
 
Old 11-27-2012, 11:11 AM   #7
tautvilas
LQ Newbie
 
Registered: Nov 2012
Posts: 15

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by TommyC7 View Post
Packages aren't in /usr, they're in /var/log/packages. The package name in /var/log/packages/ is what you "removepkg."
I know that. That is precisely the problem. There is no package called *thunderbird* in /var/log/packages.
Btw, I said if you type removepkg in /usr, you can remove a package the same way as you do it from pkgtool.
 
Old 11-27-2012, 11:29 AM   #8
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
If a Slackware package is installed with a Slackware tool it should show in /var/log/packages.

So, are you sure that thunderbird is (still) installed?.

To check, type as a regular user (not as root):
Code:
whereis thunderbird
And:
Code:
ls -l /usr/bin/thunderbird
Please post the output of both commands.

PS Or maybe you inadvertently removed (part of) /var/log/packages? This the only other possibility I can think of, right now.

PS2 If you made a full Slackware 14 installation (but the KDEI series) following command should return a little less than 1070:
Code:
ls -1 /var/log/packages | wc -l

Last edited by Didier Spaier; 11-27-2012 at 11:56 AM. Reason: PS added, PS2 added
 
Old 11-27-2012, 12:56 PM   #9
tautvilas
LQ Newbie
 
Registered: Nov 2012
Posts: 15

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Didier Spaier View Post
If a Slackware package is installed with a Slackware tool it should show in /var/log/packages.

So, are you sure that thunderbird is (still) installed?.

To check, type as a regular user (not as root):
Code:
whereis thunderbird
And:
Code:
ls -l /usr/bin/thunderbird
Please post the output of both commands.

PS Or maybe you inadvertently removed (part of) /var/log/packages? This the only other possibility I can think of, right now.

PS2 If you made a full Slackware 14 installation (but the KDEI series) following command should return a little less than 1070:
Code:
ls -1 /var/log/packages | wc -l
Code:
whereis thunderbird
returns
Code:
thunderbird: /usr/bin/thunderbird /usr/X11R6/bin/thunderbird /usr/bin/X11/thunderbird /usr/X11/bin/thunderbird
Code:
ls -l /usr/bin/thunderbird
returns
Code:
lrwxrwxrwx 1 root root 41 Nov 25 23:19 /usr/bin/thunderbird -> /usr/lib64/thunderbird-15.0.1/thunderbird
Thunderbird is not partially removed etc.
 
Old 11-27-2012, 01:20 PM   #10
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Then what is the output of
Code:
wc -1 /var/log/packages | wc -l
Anyhow, if there is no /var/log/packages/thunderbird* in /var/log/packages, either something went wrong during installation or that file was removed.

In that case the database /var/log/packages should be rebuilt, otherwise Slackware tools for packages management won't work.
 
Old 11-27-2012, 01:30 PM   #11
tautvilas
LQ Newbie
 
Registered: Nov 2012
Posts: 15

Original Poster
Rep: Reputation: Disabled
It returns 1130. I removed packages I dont use using removepkg and installed multilib packages to be able to use skype and virtual-box.
 
Old 11-27-2012, 01:45 PM   #12
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Then only a few packages are in concern. Good. Try this for these:
Code:
upgradepkg --install-new --reinstall <package>
removekg <package>
After that the package should be successfully removed.

Last edited by Didier Spaier; 11-27-2012 at 05:02 PM. Reason: Minor corrections of the wording
 
  


Reply



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
Software uninstall silverspirit Linux - Newbie 4 10-30-2012 01:33 PM
how to uninstall software ?? loup_cool666 Linux - Software 8 09-26-2008 11:55 PM
How do you uninstall software which doesn't have an uninstall-file? lagu2653 Linux - Software 2 12-08-2005 12:36 PM
How do I 'Uninstall' software? Brad Linux - Software 3 05-13-2002 09:33 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:15 PM.

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