According to [EMAIL PROTECTED]: While burning my CPU.
> 
> When an application says it needs libraries such as Xext and m, which are
> unfamiliar to me, I'm faced with the problem of knowing whether they are
> installed (in RH 5.2), There are various places where libraries are kept,
> and so I wondered if there was some efficient way to ascertain whether I
> presently have a library on HD. If I find I need a library, is there a
> special place to find such specialized libraries on line?

locate <lib>
ldconfig -v >libs.txt

locate will search for <lib> 
ldconfig -verbose will output all linked libs to a file called libs.txt in
this instance.

The command 'find' could be used but its much slower and is not realy suited
for your purpouse.

As a command line example for Xext we would presume it would be in
/usr/X11/lib or almost certanly in /usr/X!!!! an example would be;

find /usr/X11/ -name Xext

> 
> Haines Brown
> 


-- 
Regards Richard.
[EMAIL PROTECTED]

Reply via email to