刚装完UBUNTU 8.04,安装H3C上网认证的时候,报错:
linux1x: error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot open shared object file: No such file or directory
找了一会,终于在网上找到了libstdc++-libc6.2-2.so.3(下载完,去掉.gif)
再附上一些网上的解决方法:
如果遇到错误提示缺少libstdc++-libc6.2-2.so.3,就在在 /usr/lib下做一个名为libstdc++-libc6.2-2.so.3的c++标准库文件(这种方法最简单)
办法: 在/usr/lib下做一个名为libstdc++-libc6.2-2.so.3的软链接到高版本的libstdc++
代码:
$ cd /usr/lib
$ ls libstdc++*
在我的系统上ls命令的结果是 libstdc++.so.5.0.7 libstdc++.so.6.0.8
libstdc++.so.6.0.8就是我们要找的,给它做个链接
代码:
$ sudo ln -s libstdc++.so.6.0.8 libstdc++-libc6.2-2.so.3
这时候你可以再试一下linux1x命令
或者直接将libstdc++.so.x.x.x复制一份到/usr/lib下面,命名为libstdc++-libc6.2-2.so.3即可。
代码:
$ sudo cp libstdc++.so.6.0.8 libstdc++-libc6.2-2.so.3
===========
第一次运行linux1x都提示缺少一个文件(记得好像是以libstdc++开头的──标准的c++库。)其实系统中有这个库文件在系统中存在,只是现 在不叫这个名字了而已。你可以使用命令“locate libstdc++”找到一个与提示中最相近的文件(位于/usr/share/lib下面吧,记不清了),然后在那个文件所在的目录复制一个,命名为提 示中提示的文件名,就可以用了(要用到sudo权限)。
相关文章
- centos6报错ls: error while loading shared libraries: libc.so.6: cannot open shared object file
- 运行编译后的程序报错 error while loading shared libraries: lib*.so: cannot open shared object file: No such file or directory
- error while loading shared libraries: libXXX.so.x: cannot open shared object file: No such file or d
- mongodb 安装错误error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No
- 运行错误:error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or
- error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot open shared object file: No s
- jad error while loading shared libraries libstdc++-libc6.2-2.so.3
- error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or d
- 解决error while loading shared libraries: libXXX.so.X: cannot open shared object file: No such file
- 编译Uboot时提示error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory