ahhhhhh
the command is ldconfig (starts with an L)
not idconfig
it's an unreadable font thing
ld is the GNU dynamic linker
as the tinkster has pointed out libs you compile yourself by default go in /usr/local/lib
ld looks for libs in /lib and /usr/lib
then it look in /etc/ld.so.cache
which is created by putting paths in /etc/ld.so.conf with a text editor as root
and running ldconfig as root
LD_LIBRARY_PATH
is an old lagacy Unix shell environment variable
Linux can still use many many of these older type shell variables
most people don't use this one any more or its more obscure cousins cause /etc/ld.so.conf gets the job done so well
to look at what shell variables you have set type
set
(what else !)
all of these and many more can be added to or deleted
even shell functions can be created as shell environmental variables with the
export and unset commands
shell variables can be altered for just the shell window you have open or can be put in configuration files once again as tinkster so correctly pointed out so they are in effect all the time
Last edited by foo_bar_foo; 09-19-2004 at 10:34 PM.
|