zero0ne
Dec 14 2003, 06:34 PM
anybody know how to fix this error?
"top: error while loading shared libraries: libncurses.so.4: cannot open shared object file: No such file or directory"
it would be geatly appreciated....
Thanks
CJ
crodenberg
Dec 16 2003, 09:31 PM
You'll need to create a link called libncurses.so.4 to your current libncurses library.
Search for your currently installed libncurses library. This is usually in /usr/lib
Note the version of your libncurses.so library (example: libncurses.so.5.1)
Then create the link with this command (as root):
(Assuming you have libncurses.so.5.1)
# cd /usr/lib
# ln -s libncurses.so.5.1 libncurses.so.4
That's it. Your dependancy should be resolved.