Quote:
Originally Posted by
mark54g
what did you to to create your symlink?
if you do an ll in /usr/lib do you see libncurses.so.5 as a link to libncurses.so or some other file?
Also, you do not need to use LD_LIBRARY_PATH as there is an ld.so.conf file as well as the fact that /lib and /usr/lib are default searched.
Hi Mark,
I did what you suggested earlier.
Create a symlink in /usr/lib directory and point to the 64-bit library libncurses.
# ls -l /usr/lib/libncurses*
lrwxrwxrwx 1 root root 28 Nov 10:50 libncurses.so.5 -> /usr/lib64/libncurses.so.5.4
I just check the /etc/ld.so.conf, it only had an include statement "include ld.so.conf.d/*.conf".
Inside this directory, there is only 2 files mysql-x86_64.conf and xorg-x11-x86_64.conf.
I think this should be the cause of not able to find the path to libncurses since no /lib and /usr/lib was mentioned?
Thanks in advance.