Tanguy CARRABIN wrote:
>
> Hi all,
> First, I want to thank all of you who had helped me with getting my
> kernel to work.
> ... but a problem solved is another problem found !!!
>
> I'd like to know how to edit and change the PATH.
> I'm trying tu update some libs, but at the end of the install procedure,
> I get the message that I have to add a path of a directory to the
> LD_LIBRARY_PATH.
>
> Thanks,
>
> Tanguy
LD_LIBRARY_PATH=whatever;export LD_LIBRARY_PATH
providing none exists.
Do env command to see what does exist. This is for bash..csh is
different.
If one already exists you can add to it:
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:newwhatever;export LD_LIBRARY_PATH
You can make these changes in /etc/rc.d/rc.serial or /home/.profile
file to have it the same at each boot time.