我在一个文件夹中有一堆 rpm 文件。我正在尝试使用安装它们:
rpm -ivh *.rpm
所以 rpm 可以处理正确的安装顺序。
在其中一些 rpm 上,我的系统中安装了较新的版本,因此例如:
package info-5.0-1 (which is newer than info-4.13a-2) is already installed
/opt/freeware/man/man1/infokey.1 from install of info-4.13a-2 conflicts with file from package info-5.0-1
有没有办法忽略旧的 .rpm 文件并使用已安装的新版本解决依赖关系?我想到了 --force 选项。但是 --force 如何解决冲突呢?用旧版本覆盖它们还是忽略它们而离开新版本?
欢迎任何想法。