Error while loading shared libraries :- using ./*.bin

Asked by For Learning

Tried to install java_ee_sdk-5_01-linux.bin file.Got below error:-

What is wrong with this one, any help..

preeti@ubuntu:~$ ls
Desktop Downloads frama_c_journal.ml Pictures Templates Videos
Documents examples.desktop Music Public Ubuntu One
preeti@ubuntu:~$ cd Down*
preeti@ubuntu:~/Downloads$ ls
java_ee_sdk-5_01-linux.bin mysql-5.1.50-linux-i686-icc-glibc23.tar.gz
mysql-5.1.50-linux-i686-icc-glibc23 utorrent-server-3.0-21886.tar.gz
preeti@ubuntu:~/Downloads$ chmod +x ./java_ee_sdk-5_01-linux.bin; ./java_ee_sdk-5_01-linux.bin
./java_ee_sdk-5_01-linux.bin: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu gcc-3.3 Edit question
Assignee:
No assignee Edit question
Solved by:
Tom Hurd
Solved:
Last query:
Last reply:
Revision history for this message
Best Tom Hurd (thurd) said :
#1

You'll need to download and install the libstdc++.so.5 library.
http://packages.ubuntu.com/jaunty/i386/libstdc++5/download
sudo dpkg -i libstdc*.deb

Is there a reason you need Java EE 5 and not 6? I think EE 6 would use libstdc++.so.6 which is supported in 9.10 and 10.04.

Revision history for this message
For Learning (forlearning2010) said :
#2

Thanks Tom Hurd, that solved my question.