When I install Oracle I get this error:
INFO: /usr/bin/ld: warning: libstdc++.so.5, needed by /home/test1/app/test1/product/11.2.0/dbhome_1/ctx/lib//libsc_fa.so, not found (try using -rpath or -rpath-link)
Mageia3 has /usr/lib64/libstdc++.so.6, which is just a link to libstdc++.so.6.0.17. If I make a new link called libstdc++.so.5 to libstdc++.so.6.0.17:
- Code: Select all
cd /usr/lib64
root@localhost lib64]# ls -latr libstd*
-rwxr-xr-x 1 root root 981400 Oct 24 15:17 libstdc++.so.6.0.17*
lrwxrwxrwx 1 root root 19 Nov 11 13:19 libstdc++.so.6 -> libstdc++.so.6.0.17*
[root@localhost lib64]# ln -s libstdc++.so.6.0.17 libstdc++.so.5
[root@localhost lib64]# ls -latr libstd*
-rwxr-xr-x 1 root root 981400 Oct 24 15:17 libstdc++.so.6.0.17*
lrwxrwxrwx 1 root root 19 Nov 11 13:19 libstdc++.so.6 -> libstdc++.so.6.0.17*
lrwxrwxrwx 1 root root 19 Nov 19 19:15 libstdc++.so.5 -> libstdc++.so.6.0.17*
When I try the install again I get this error:
INFO: /lib64/libstdc++.so.5: undefined reference to `__stack_chk_fail@GLIBC_2.4'
There is something not compatible.