ls: /lib/libattr.so.1: no version information available (required by /lib/libacl.so.1)

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat ls: /lib/libattr.so.1: no version information available (required by /lib/libacl.so.1)
# 1  
Old 03-24-2010
ls: /lib/libattr.so.1: no version information available (required by /lib/libacl.so.1)

Hello,
I'm experimenting a problem on my rh server.

Code:
Red Hat Enterprise Linux AS release 3 (Taroon Update 8)
2.4.21-47.ELsmp #1 SMP i686 i686 i386 GNU/Linux

It started with a segmentation fault on
Code:
#id root

To resolve it, I've installed
Code:
coreutils-4.5.3-28.4.i386.rpm

But, I encountered a new issue. Everytime I do a ls or mv command I obtain this warning (commands works fine) :
Code:
# ls
ls: /lib/libattr.so.1: no version information available (required by /lib/libacl.so.1)

Some suggestions on how to resolve version problems?

Best Regards
gb
# 2  
Old 03-24-2010
Quote:
Originally Posted by gogol_bordello
Hello,
I'm experimenting a problem on my rh server.

Code:
Red Hat Enterprise Linux AS release 3 (Taroon Update 8)
2.4.21-47.ELsmp #1 SMP i686 i686 i386 GNU/Linux

It started with a segmentation fault on
Code:
#id root

To resolve it, I've installed
Code:
coreutils-4.5.3-28.4.i386.rpm

But, I encountered a new issue. Everytime I do a ls or mv command I obtain this warning (commands works fine) :
Code:
# ls
ls: /lib/libattr.so.1: no version information available (required by /lib/libacl.so.1)

Some suggestions on how to resolve version problems?

Best Regards
gb
Hello,

libattr library is a shared library used by these binaries ls,mv. You need to have this shared library in the /usr/lib/ and a symlink known by libattr.so pointing to libattr.so.x where x is a number.
So do this.
Code:
find /usr -iname 'libattr*' -type f

If you see the results, then you have to have a symlink as specified above.

Please let me know,

Regards,
gaurav.
# 3  
Old 03-24-2010
uhm... it is still not working

I've created simbolic links in /lib and /usr... but I've still the same error

Some suggestions?

PS: the library is stored in /lib not /usr/lib
# 4  
Old 03-24-2010
Hello,

List the files in /lib

Code:
cd /lib&& ls -l libattr*

# 5  
Old 03-24-2010
Code:
# cd /lib&& ls -l libattr*
ls: /lib/libattr.so.1: no version information available (required by /lib/libacl.so.1)
lrwxrwxrwx    1 root     root           16 Mar 24 17:57 libattr.so.1 -> libattr.so.1.0.1
-rwxr-xr-x    2 root     root         7148 Jan 29  2003 libattr.so.1.0.1

# cd /lib&& ls -l libacl*
ls: /lib/libattr.so.1: no version information available (required by /lib/libacl.so.1)
lrwxrwxrwx    1 root     root           20 Mar 24 13:09 libacl.so.1 -> /lib/libacl.so.1.1.0
-rwxr-xr-x    2 root     root       371409 Jan 12  2006 libacl.so.1.1.0

# 6  
Old 03-24-2010
Hello,

That looks okay
what does

Code:
ldd /bin/ls

to check for the dependancy of the shared libs

Apparently you do re-install those binaries(mv,ls) to resolve the version issue. The package manager 'yum' can take care of it.

Regards,
Gaurav.
# 7  
Old 03-25-2010
Hello gaurav1086,
thanks for your support.

Finally I've found the problem. The coreutils update used wasn't the right one.

Now, with
Code:
rpm -Uvh  coreutils-4.5.3-28.7.i386.rpm

everything is right.

br
gb
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

./Vega6: /lib/libc.so.6: version `GLIBC_2.15' not found (required by ./Vega6)

Hello, I am trying to run a chess pairing program called Vega Chess on RHEL 6.5 Server $ uname -a Linux CDMA 2.6.32-431.el6.i686 #1 SMP Sun Nov 10 22:20:22 EST 2013 i686 i686 i386 GNU/Linux $ cat /etc/redhat-release Red Hat Enterprise Linux Server release 6.5 (Santiago)This is the way I... (6 Replies)
Discussion started by: Ferocci
6 Replies

2. UNIX for Dummies Questions & Answers

Can't CD to lib ??? why

Hi, I have root access and user name called prod. but it doesn't matter which user I log in as. But I can't CD to the directory. Can you advise. dr-xr-xr-x 1 root root 1 Sep 12 15:40 lib $id uid=4902(prod) gid=50(develop) $cd lib -bash: cd: lib: Permission... (7 Replies)
Discussion started by: samnyc
7 Replies

3. AIX

Lib files

Hi All, I am trying to install IIS Suite application on AIX box. It gave an error as below Ensure the following libraries do not exist: /usr/lib/libicuio.a, /usr/lib/libicuuc.a, /usr/lib/libicui18n.a. These libraries may cause uvsh to not work properly. I manually removed these files by... (1 Reply)
Discussion started by: tostay2003
1 Replies

4. AIX

LIB Version

Hi...please help with command to find the library version on AIX server ---------- Post updated at 12:50 PM ---------- Previous update was at 12:31 PM ---------- AIX version is 6.1.Please (4 Replies)
Discussion started by: Sanal
4 Replies

5. Red Hat

Cannot start httpd service `GLIBC_2.4' not found (required by /lib/libgcc_s.so.1)

# service httpd start Starting httpd: Syntax error on line 6 of /etc/httpd/conf.d/php.conf: Cannot load /etc/httpd/modules/libphp4.so into server: /lib/tls/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libgcc_s.so.1) I... (2 Replies)
Discussion started by: getrue
2 Replies

6. Red Hat

Lib missing

Hai dear, I am installing some application on linux RedHat 9 It gives me following discrepancies lib.so.6 (GLIBC_2.3.4) needed lib.so.6 (GLIBC_2.4) needed libpthread.so.0(GLIBC_2.3.3) needed rtld(GNU_HASH) needed i tried to search a lot on internet to find relative rpm for these libs... (3 Replies)
Discussion started by: Danish Shakil
3 Replies

7. Shell Programming and Scripting

Perl lib version conflict

Hi, I am trying to run a perl code on a Solaris server, but am getting the following error. Perl lib version (5.00503) doesn't match executable version (5.006001) at /usr/perl5/5.00503 I believe that this is a conflict between the executable and the lib version. Is there any way out of this... (2 Replies)
Discussion started by: King Nothing
2 Replies

8. Programming

Question on using gd lib with c++

Hello, I'm trying to use gd with c++ in linux. Previously, I had already succeed using the gd lib in windows through gdwin32. Now I would like to run the program in linux but i'm not sure how to do it. I'm currently try running it in cygwin, but I couldn't compiled it. Any suggestion? (3 Replies)
Discussion started by: shahrulb
3 Replies

9. Programming

To use lib or lib32?

A good day to you, dear experts, I am a newbie, I noticed in binutils or gcc there are lib and lib32 and lib64, to take binutils as an example, My system is sgi IRIX6.5, which is suggested to use "n32" flag during the compiling and linking, is that mean that I need to use lib32? Q1. which one... (2 Replies)
Discussion started by: lakeat
2 Replies

10. Linux

ct-lib on Lynix

Hi Friends ! Where can I get free ct-lib for Lynix ?? My problem is something like this-- Sybase server is running on a Solaris machine. Now I trying to access the Sybase from a Lynix machine for which i need ct-lib. I tried by downloading some free ct-libs for Lynix on the net, but they... (2 Replies)
Discussion started by: mrgubbala
2 Replies
Login or Register to Ask a Question