我在CentOS上收到此错误:
/lib/ld-linux.so.2: bad ELF interpreter: No such file
我尝试使用以下命令解决此问题。
yum -y install glibc.i686
但它没有用。它说:
没有包glibc.i686可用。
My CentOS version: 6.7
有人能帮帮我吗?感谢。
答案 0 :(得分:3)
使用命令
yum provides ld-linux.so.2
您可能会看到以下内容:
yum provides ld-linux.so.2
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.symnds.com
* epel: mirror.symnds.com
* extras: mirror.solarvps.com
* rpmforge: mirror.us.leaseweb.net
* updates: mirror.symnds.com
glibc-2.17-105.el7.i686 : The GNU libc libraries
Repo : base
Matched from:
Provides : ld-linux.so.2
glibc-2.17-106.el7_2.1.i686 : The GNU libc libraries
Repo : updates
Matched from:
Provides : ld-linux.so.2
然后你可以运行:
yum install glibc-2.17-105.el7.i686 -y