Running .BIN files - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: How Do I? (https://www.linux-noob.com/forums/forum-60.html) +--- Thread: Running .BIN files (/thread-1113.html) |
Running .BIN files - moleman - 2007-11-01 Hello there, I've been having problems running a .bin file, specifically trying to load the Java sdk onto Ubuntu. When I try to run it, I get the error "error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory". I don't know much about Linux, but I know that libstdc++6 is up to date. I have no idea if it'll help anything though. Any help would be greatly appreciated thanks Running .BIN files - hybrid - 2007-11-01 Try doing this from a terminal: Code: sudo apt-get install libstdc++6 (found here) And then run the install again. I imagine this problem is probably due to old versions of libstdc++ being used by the Java SDK installer. Let us know if this solves the problem. :) Running .BIN files - moleman - 2007-11-01 Thanks for the response :) Unfortunately, it did not solve the problem. Do you think that it would work if I tried an older java sdk? Edit: I tried another one and it worked just fine. I'm guessing Sun messed up that file ;) |