Page 1 of 1

Stand alone dependencies checker

Posted: 14 Jan 2016, 18:48
by Jack
Is there a stand alone dependencies checker that will work with slackware? I just want to check dependencies on programs before I use them. It can be text base to be run in a terminal.

Re: Stand alone dependencies checker

Posted: 15 Jan 2016, 00:20
by Bogomips
usm

-d [/var/log/packages/package-name] Resolve dependencies for installed
package
-d [NOARG] Resolve dependencies for ALL installed packages

OR

ldd /<Path to>/<Program or Library>. If not sure where program is, use which:

Code: Select all

guest@porteus:~$ which nemo
/usr/bin/nemo
guest@porteus:~$ ldd /usr/bin/nemo | grep "not found"
Should list any obious missing dependencies :)

Re: Stand alone dependencies checker

Posted: 15 Jan 2016, 00:26
by Jack
Thanks I will try it. Right now I trying Nemesis 3.5 LXDE and playing Beatles 1+ album and it is playing great. brokenman is doing a great job.

Re: Stand alone dependencies checker

Posted: 24 Mar 2016, 01:19
by francois
Thanks for the useful information.