error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory错误的解决方法
You've just migrated to RHEL6 or are trying to run 32 bit software (quickbooks for example) and you are getting some strange dependency error saying something like:
" libstdc++.so.6: cannot open shared object file: No such file or directory"
Well, RHEL6 by default comes with libstdc++ but with the 64 bit libraries. To install the 32 libraries you can do the following while logged in as root.
yum list available | grep libstdc++
Specifically you want the following:
libstdc++.i686 4.4.4-13.el6 libstdc++-devel.i686 4.4.4-13.el6
After you found the packages, install them!
yum install libstdc++.i686
yum install libstdc++-devel.i686
解决libstdc++依赖错误

本文介绍了解决RHEL6系统中32位软件因缺少libstdc++导致的依赖错误的方法。通过使用yum命令安装所需的32位库文件,可以有效解决“libstdc++.so.6: cannot open shared object file: No such file or directory”的问题。
3426

被折叠的 条评论
为什么被折叠?



