我正在开发一个 PostgresDB 插件。该插件在 Centos 6.3 的 Postgres 中运行。为了能够编译我的项目,我必须安装一些来自 epel 存储库的库和一些来自 rpmforge 的库。有趣的是,一些包在两个存储库中都是重复的,例如:
# yum whatprovides postgis
Loaded plugins: fastestmirror, presto, priorities, refresh-packagekit
Loading mirror speeds from cached hostfile
* Webmin: download.webmin.com
* base: mirror2.hs-esslingen.de
* epel: mirror.awanti.com
* extras: mirror2.hs-esslingen.de
* rpmforge: mirror.nl.leaseweb.net
* updates: mirror.netcologne.de
postgis-1.5.3-1.el6.x86_64 : Geographic Information Systems Extensions to
: PostgreSQL
Repo : epel
Matched from:
postgis-1.3.6-1.el6.rf.x86_64 : Geographic Information Systems Extensions to
: PostgreSQL
Repo : rpmforge
Matched from:
现在我的项目编译了,但没有链接到缺失的引用:
/usr/pgsql-9.1/lib/postgis-1.5.so: undefined reference to `accumArrayResult'
/usr/pgsql-9.1/lib/postgis-1.5.so: undefined reference to `TupleDescGetAttInMetadata'
/usr/pgsql-9.1/lib/postgis-1.5.so: undefined reference to `repalloc'
/usr/pgsql-9.1/lib/postgis-1.5.so: undefined reference to `SPI_exec'
/usr/pgsql-9.1/lib/postgis-1.5.so: undefined reference to `init_MultiFuncCall'
这很可能意味着,有些软件包混淆了:有些是从一个存储库安装的,有些是从另一个存储库安装的。
问题:(i) 我如何告诉 yum 从一个存储库安装软件包,然后从另一个存储库重新安装(以查看链接错误是否会消失);(ii) 如何查看系统上的哪些软件包是从一个存储库安装的,以及从另一个存储库安装的?
要从一个安装包,请排除 /etc/yum.repos.d/epel 或 /etc/yum.repos.d/rpmforge 文件中的包。
exclude= <包名>
添加在最后,如果你愿意,你可以添加多行。
安装的包应该在 /var/log/yum.log 中列出
yum list installed
将告诉您安装了给定软件包的回购协议,例如:要选择要安装的变体,只需使用列表中要安装的变体的确切名称即可
whatprovides
:有关详细信息,请参阅 的
specify package names
部分man yum
。