Did you get an error, like this one, when you tried to run an executable:
./MyOldBinFile: error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot open shared object file: No such file or directory
This happens to you if you try to execute an old dynamically linked executable, whose library dependencies are missing. Here is how you would have to fix it. Use the command ldd <binFile>, to identify missing shared libraries. Find them online or on other machines and copy them onto your’s. That should do it. Moreover, go one step further and use a software like Ermine OR statifier to create a statically linked executable from a dynamically linked one.
./ErwinePro.i386 MyOldBinFile –output=MyOldBinFile_Static