I have been getting the following error when trying to run ldconfig:
ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link
# ll /usr/lib64/libfreebl3.so
-rwxr-xr-x 1 root root 312336 Mar 28 11:13 /usr/lib64/libfreebl3.so
I've used "yum whatprovides /usr/lib64/libfreeb13.so" to determine that this file belongs to nss. I have tried to reinstall nss but that does not fix the problem.
Any ideas? How can I fix this?
On Tue, May 11, 2010 at 07:22:05PM -0400, a arias wrote:
I have been getting the following error when trying to run ldconfig:
ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link # ll /usr/lib64/libfreebl3.so -rwxr-xr-x 1 root root 312336 Mar 28 11:13 /usr/lib64/libfreebl3.so
I've used "yum whatprovides /usr/lib64/libfreeb13.so" to determine that this file belongs to nss. I have tried to reinstall nss but that does not fix the problem.
Any ideas? How can I fix this?
Try to reinstall glibc.
That did not work. It fact, i got the following message during the yum reinstall process:
/sbin/ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link
On Tue, May 11, 2010 at 7:39 PM, Dominik Zyla gavroche@gavroche.pl wrote:
On Tue, May 11, 2010 at 07:22:05PM -0400, a arias wrote:
I have been getting the following error when trying to run ldconfig:
ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link # ll /usr/lib64/libfreebl3.so -rwxr-xr-x 1 root root 312336 Mar 28 11:13 /usr/lib64/libfreebl3.so
I've used "yum whatprovides /usr/lib64/libfreeb13.so" to determine that
this
file belongs to nss. I have tried to reinstall nss but that does not fix
the
problem.
Any ideas? How can I fix this?
Try to reinstall glibc.
-- Dominik Zyla
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Tue, May 11, 2010 at 07:50:05PM -0400, a arias wrote:
That did not work. It fact, i got the following message during the yum reinstall process:
/sbin/ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link
According to `yum deplist glibc-2.5-42.el5_4.3.x86_64' you may also try with reinstalling `libgcc' and `glibc-common'.
Zyla, that did not work either.
I was able to work around this by doing the following:
mv /usr/lib64/libfreebl3.so /usr/lib64/libfreebl3.so.0.1; ln -snf /usr/lib64/libfreebl3.so.0.1 /usr/lib64/libfreel3.so
I wonder if I am the only one who is experiencing this. What could have caused this?
Thanks,
On Tue, May 11, 2010 at 8:12 PM, Dominik Zyla gavroche@gavroche.pl wrote:
On Tue, May 11, 2010 at 07:50:05PM -0400, a arias wrote:
That did not work. It fact, i got the following message during the yum reinstall process:
/sbin/ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link
According to `yum deplist glibc-2.5-42.el5_4.3.x86_64' you may also try with reinstalling `libgcc' and `glibc-common'.
-- Dominik Zyla
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On 05/11/2010 07:09 PM, a arias wrote:
I wonder if I am the only one who is experiencing this. What could have caused this?
Look for other files that would otherwise be the targets of a symlink:
# ls /usr/lib64/libfreebl3*
It's normal for /usr/lib64/libfreebl3.so to not be a symlink. It shouldn't be a problem unless ldconfig locates another file which it will try to use as the target of a symlink.
Once you locate the other file, you can either remove the package that provides it (or remove the file if there is no such package) or ignore the error.