You might face this problem after installed neroAacEnc:
neroAacEnc: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
here is the fix for centos or fedora user.
yum whatprovides libstdc++.so.6
then it will show the result of:
[root@web]# yum whatprovides libstdc++.so.6
Loaded plugins: fastestmirror, priorities
Loading mirror speeds from cached hostfile
* base: mirror.ash.fastserv.com
* extras: mirror.batblue.com
* rpmforge: ftp-stud.fht-esslingen.de
* updates: mirror.metrocast.net
libstdc++-4.4.4-13.el6.i686 : GNU Standard C++ Library
Repo : base
Matched from:
Other : libstdc++.so.6
just install it with :
yum install libstdc++-4.4.4-13.el6.i686
Note: This only work on centos, or fedora or any other mechine that has yum. For debian or ubuntu, you might need to find alternative solution. Or suggest at comment below if you know any solution.
Hope that help, and dont forget to say thanks on comment below, its free and motivate me to post more useful fix/solution for you.
Cheers
Boon