Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting the version number of .so files !!

Status
Not open for further replies.

abc73

Programmer
Apr 28, 2004
89
US
Hi,
Can any anyone tell me how can we get the version number of .so files in unix. Like in Windows if we right click on on a .DLL file the properties window gives all the information. Is there any utility in unix which behaves like that and gives me the version number and other information about .so file. Any help appreciated. Thanks
 
ls -la shows me on linux, to which library a link points, and ldd shows depencies i.e.:
Code:
ls -la /usr/lib/libz.so

lrwxrwxrwx ... /usr/lib/libz.so-> /usr/lib/libz.so.1
 
ldd /usr/lib/libz.so
So libz is of version 1
version 9.7.16 will be libz.so.9.7.16 and so on...

seeking a job as java-programmer in Berlin:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top