CentOS 安裝軟件出現(xiàn)錯誤:/lib/ld-linux.so.2: bad ELF interpreter 解決
環(huán)境:
1
2
3
4
5
|
[orangle@localhost Downloads]$ uname -m&& uname -r x86_64 2.6.32-220.el6.x86_64 [orangle@localhost Downloads]$ cat /etc/redhat-release CentOS release 6.2 (Final) |
使用的時候出現(xiàn)一個錯誤
1
|
bash : /usr/local/bin/rar : /lib/ld-linux .so.2: bad ELF interpreter: No such file or directory |
是因為64位系統(tǒng)中安裝了32位程序
解決方法:
1
|
yum install glibc.i686 |
重新安裝以后還有如下類系錯誤 再繼續(xù)安裝包
1
2
|
error while loading shared libraries: libstdc++.so.6: cannot open shared object file : No such file or directory yum install libstdc++.so.6 |
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
原文鏈接:http://blog.csdn.net/orangleliu/article/details/8869626