Topic: How i can successfully host a server onto linux RedHat 9?
When i tryiing run teewars_srv, i found that there is required libstdc++ rpm containing library libstdc++.so.6.
./teewars: error while loading shared libraries:
libstdc++.so.6: cannot open shared object file: No such file or directory
For that OS I haven't found it, but I found for Fedora release, f.e. libstdc++-4.1.1-51.fc5.i386.rpm or libstdc++-4.3.0-2.i386.rpm.
Installing those rpms not finished successfully - required many some libraries in dependence.
Simply unpacking libstdc++.so.6 file from those to /usr/lib and trying run again don't crowned with success - requiring some other libs again:
$ nohup ./teewars_srv -f tee.cfg > tee.log &
[1] 26694
$ cat tee.log
./teewars_srv: /lib/i686/libc.so.6: version `GLIBC_2.4' not found (required by ./teewars_srv)
./teewars_srv: /lib/libgcc_s.so.1: version `GCC_4.2.0' not found (required by /usr/lib/libstdc++.so.6)
./teewars_srv: /lib/libgcc_s.so.1: version `GCC_3.3' not found (required by /usr/lib/libstdc++.so.6)
./teewars_srv: /lib/i686/libc.so.6: version `GLIBC_2.4' not found (required by /usr/lib/libstdc++.so.6)
[1]+ Exit 1 nohup ./teewars_srv -f tee.cfg >tee.log</