LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 06-09-2006, 01:20 PM   #1
Megatog615
Member
 
Registered: Feb 2006
Distribution: Ubuntu, Debian, and Slackware
Posts: 48

Rep: Reputation: 15
fbsetbg


(In Fluxbox)

When I try fbsetbg -a /path/to/imagefile, it gives me the following error, then quits:
Code:
display: error while loading shared libraries: libdpstk.so.1: cannot open shared object files: No such file or directory
What package could I possibly be missing?
 
Old 06-09-2006, 01:36 PM   #2
vls
Member
 
Registered: Jan 2005
Location: The grassy knoll
Distribution: Slackware,Debian
Posts: 192

Rep: Reputation: 31
Quote:
Originally Posted by Megatog615
(In Fluxbox)

When I try fbsetbg -a /path/to/imagefile, it gives me the following error, then quits:
Code:
display: error while loading shared libraries: libdpstk.so.1: cannot open shared object files: No such file or directory
What package could I possibly be missing?
There's a file in the slackware package directory called MANIFEST.bz2. It lists every file in every package so search through that to see what package the missing so is in.
 
Old 06-09-2006, 01:52 PM   #3
egag
Senior Member
 
Registered: Jul 2004
Location: Netherlands
Distribution: Slackware
Posts: 2,721

Rep: Reputation: 53
to find an installed package containing a specific file
you can use : "grep <filename> /var/log/packages/* "

so here you can use:" grep libdpstk.so.1 /var/log/packages/* "

egag
 
Old 06-09-2006, 02:33 PM   #4
Megatog615
Member
 
Registered: Feb 2006
Distribution: Ubuntu, Debian, and Slackware
Posts: 48

Original Poster
Rep: Reputation: 15
Thanks for the replies.
Using "grep libdpstk.so.1 /var/log/packages/*" returns nothing.
 
Old 06-09-2006, 02:57 PM   #5
kodon
Member
 
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796

Rep: Reputation: 31
what version of slackware, X, fluxbox?


you can also use the package browser to search...
 
Old 06-09-2006, 02:57 PM   #6
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
On Slack 10.2, this file appears to be part of x11-6.8.2-i486-3.tgz. It seems odd that you don't have the file, given that you must have the x11 package installed to be running X in the first place :/.
 
Old 06-09-2006, 03:08 PM   #7
Megatog615
Member
 
Registered: Feb 2006
Distribution: Ubuntu, Debian, and Slackware
Posts: 48

Original Poster
Rep: Reputation: 15
Slackware 10.2, x11-6.9.0-i486-4, fluxbox-0.9.15.1-i486-1

Both packages from Slackware-Current. Is that why?
 
Old 06-09-2006, 03:27 PM   #8
kodon
Member
 
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796

Rep: Reputation: 31
i'm running --current without a problem

did you upgrade everything?
did you install the new packages as well?
 
Old 06-09-2006, 03:38 PM   #9
Megatog615
Member
 
Registered: Feb 2006
Distribution: Ubuntu, Debian, and Slackware
Posts: 48

Original Poster
Rep: Reputation: 15
Can someone send me this file and tell me where to put it?
 
Old 06-09-2006, 03:50 PM   #10
kodon
Member
 
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796

Rep: Reputation: 31
you don't need it

just a stab in the dark...
did you upgrade while in X/flux?
did you not restart X/flux afterwards?
 
Old 06-09-2006, 04:02 PM   #11
Megatog615
Member
 
Registered: Feb 2006
Distribution: Ubuntu, Debian, and Slackware
Posts: 48

Original Poster
Rep: Reputation: 15
I have restarted many times before, but I will try again.

EDIT: Nope, same error.

Last edited by Megatog615; 06-09-2006 at 04:03 PM.
 
Old 06-09-2006, 04:06 PM   #12
kodon
Member
 
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796

Rep: Reputation: 31
i'll ask the previous question again...
did you upgrade everything (including installing new packages)?
 
Old 06-09-2006, 05:01 PM   #13
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
Quote:
Originally Posted by Megatog615
Slackware 10.2, x11-6.9.0-i486-4, fluxbox-0.9.15.1-i486-1

Both packages from Slackware-Current. Is that why?
You upgraded using these packages, on a Slackware 10.2 computer? No wonder your other applications start having a bad time.

Look at http://www.slackware.it/pb/search.ph...=libdpstk.so.1 and then http://www.slackware.it/pb/search.ph...=libdpstk.so.1 ... this library file, which was present in your original version of X, is no longer present in the slackware-current version of the X package. Yet, you have several Slackware 10.2 packages installed which were compiled against the old X package and thus have a dependeny on that particular library. When the library is "upgraded away" you have a problem.

If you want to use packages from slackware-current ; either upgrade 100%, or else take the package sources and use the SlackBuild script to compile a Slackware package that will work on your Slackware 10.2 computer. Mixing packages from two releases is definitely not a good idea.

Eric
 
Old 06-09-2006, 05:11 PM   #14
vls
Member
 
Registered: Jan 2005
Location: The grassy knoll
Distribution: Slackware,Debian
Posts: 192

Rep: Reputation: 31
Quote:
Originally Posted by Alien Bob
http://www.slackware.it/pb/search.ph...=libdpstk.so.1 and then http://www.slackware.it/pb/search.ph...=libdpstk.so.1 ... this library file, which was present in your original version of X, is no longer present in the slackware-current version of the X package. Yet, you have several Slackware 10.2 packages installed which were compiled against the old X package and thus have a dependeny on that particular library. When the library is "upgraded away" you have a problem.
Been Slack for 10 years and I still learn something new.
 
Old 06-09-2006, 09:20 PM   #15
Megatog615
Member
 
Registered: Feb 2006
Distribution: Ubuntu, Debian, and Slackware
Posts: 48

Original Poster
Rep: Reputation: 15
I'd like to stay current. What other packages do I need to upgrade in order to have this working?
 
  


Reply

Tags
fluxbox



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
fbsetbg wildcat22 Linux - Software 2 08-06-2005 09:10 PM
fluxbox : fbsetbg aje Slackware 1 11-13-2004 09:05 PM
CVS Download and fbsetbg jrdioko Linux - Software 0 06-14-2004 06:49 PM
fbsetbg not working bingbang Linux - Newbie 2 05-08-2004 04:25 PM
fbsetbg newinlinux Linux - Software 5 04-20-2004 03:38 AM

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

All times are GMT -5. The time now is 08:13 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