Page 1 of 1

libidn.so.11: file too short

PostPosted: Sep 28th, '15, 12:28
by svan
Hello,

if i use wget/rpmi/curl,

i'am getting this error:
Code: Select all
[root@localhost ~]# wget
wget: error while loading shared libraries: /lib64/libidn.so.11: file too short
[root@localhost ~]#



i did
urpmi --replacepkgs libidn.so.11

but still same issue, any ideeas?

Re: libidn.so.11: file too short

PostPosted: Sep 29th, '15, 01:08
by doktor5000
Please show the output as root of
Code: Select all
rpm -V lib64idn11
ls -al /lib64/libidn*
md5sum /lib64/libidn*
ldd /usr/bin/wget


To actually replace the files of the package that contains this library better add --replacefiles, and use the package name instead of the library filename
Code: Select all
urpmi --replacepkgs --replacefiles lib64idn11
as urpmi --replacepkgs libidn.so.11 will resolve to the 32bit package which will not help you.