在Windows中,EXE和DLL具有版本信息,至少包括以下字段:
- 文件版本
- 产品版本
- 内部名称
- 产品名称
- 版权
在Linux库/可执行文件中:
- 存在哪些字段?
- 如何查看此类信息?
- 要阅读哪些工具/库?
/sbin/ldconfig -p
在Windows中,EXE和DLL具有版本信息,至少包括以下字段:
在Linux库/可执行文件中:
/sbin/ldconfig -p
Answers:
版本信息未明确存储在ELF文件中。您所拥有的是库的名称soname
,其中包括主版本。完整版本通常存储为库文件名的一部分。
如果您有图书馆,说libtest.so
,那么您通常有:
libtest.so.1.0.1
-库文件本身,包含完整版本libtest.so.1
-与的符号链接libtest.so.1.0.1
,名称与soname
libtest.so
- libtest.so.1
用于链接的符号链接。在库文件中libtest.so.1.0.1
,将SONAME
在dynamic节中调用一个条目,该条目将称为libtest.so.1
。当您将程序链接到该库时,链接的程序将在动态部分的输入soname
下存储该库的NEEDED
。
如果要验证哪个ELF文件中确切包含什么,可以尝试运行:
readelf -a -W elffile
其中elffile
可以是可执行文件的库。
如果您只想获取库的版本,则可以使用:
readelf -d /path/to/library.so |grep SONAME
AFAIK,可执行文件中没有这样的信息(至少默认情况下不是这样)。
也可以像Rahul Patil所写的那样依靠程序本身或包装系统。
您可以使用ldconfig -v | grep libraryname
,命令也可以选择command -V
或binaryfile --version
例如:
test@ubuntukrb12:~# ls --version
ls (GNU coreutils) 8.13
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
您也可以根据使用的发行版使用yum或aptitude。
在RHEL5 / CENTOS5 / Fedora中可以使用yum info packagename
,如果已安装,则可以使用rpm --version packagename
[root@ldap1 ~]# yum info bind97
Loaded plugins: downloadonly, fastestmirror, security
Loading mirror speeds from cached hostfile
* base: mirrors.sin3.sg.voxel.net
* epel: mirror.imt-systems.com
* extras: mirrors.sin3.sg.voxel.net
* updates: mirrors.sin3.sg.voxel.net
Installed Packages
Name : bind97
Arch : i386
Epoch : 32
Version : 9.7.0
Release : 10.P2.el5_8.4
Size : 6.3 M
Repo : installed
Summary : The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server
URL : http://www.isc.org/products/BIND/
License : ISC
Description: BIND (Berkeley Internet Name Domain) is an implementation of the DNS
: (Domain Name System) protocols. BIND includes a DNS server (named),
: which resolves host names to IP addresses; a resolver library
: (routines for applications to use when interfacing with DNS); and
: tools for verifying that the DNS server is operating properly.
在Ubuntu中,您可以使用aptitude show pkgname
或dpkg --version pkgname
root@ubuntukrb12:~# aptitude show bind9utils
Package: bind9utils
State: installed
Automatically installed: yes
Version: 1:9.8.1.dfsg.P1-4ubuntu0.4
Priority: optional
Section: net
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: amd64
Uncompressed Size: 306 k
Depends: libbind9-80, libc6 (>= 2.14), libdns81, libisc83, libisccc80, libisccfg82
Conflicts: bind9utils
Replaces: bind9 (<= 1:9.5.0~b2-1), bind9 (<= 1:9.5.0~b2-1)
Description: Utilities for BIND
This package provides various utilities that are useful for maintaining a working BIND installation.
rpm
,我认为您将要rpm --query pkgname
列出版本字符串(rpm --version
将打印其rpm
自身的版本;同样可能适用dpkg
)
对于基于Redhat的系统,请执行以下操作:
ldd [file you want to run] | > needed-packages
签出required-packages文件,确保库文件名中没有路径名。如果这样删除它们,那么将“ /bin/lib/libx.so.1”更改为“ libx.so.1”
找出哪个包包含库
yum -y provides [lib name]
或将其放入脚本或从cmd行运行:
for lib in `cat libs.txt`;
do
yum -y provides $lib | head -2 | grep " : " >> packages.list
done
接下来,创建以下脚本或从cmd行运行:
for package in `cat packages.list | awk '{ print $1 }'`;
do
yum -y install $package
done
完成后,运行程序。如果在运行时收到GUI错误。向下复制它们,如果它们是库引用,则查找那些软件包并以相同方式安装。