- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 aws 上运行 RedHat Linux。当我运行 yum update 时,它以以下问题结束。我该如何解决这个问题?
--> Finished Dependency Resolution
Error: Package: 4:perl-libs-5.10.1-127.el6.x86_64 (@CentOS/6.3)
Requires: perl = 4:5.10.1-127.el6
Removing: 4:perl-5.10.1-127.el6.x86_64 (@CentOS/6.3)
perl = 4:5.10.1-127.el6
Updated By: 4:perl-5.10.1-136.el6_6.1.x86_64 (updates)
perl = 4:5.10.1-136.el6_6.1
Available: 4:perl-5.10.1-136.el6.x86_64 (base)
perl = 4:5.10.1-136.el6
You could try using --skip-broken to work around the problem
** Found 6 pre-existing rpmdb problem(s), 'yum check' output follows:
db4-4.7.25-18.el6_4.x86_64 is a duplicate with db4-4.7.25-17.el6.x86_64
1:perl-Module-Pluggable-3.90-136.el6_6.1.x86_64 has missing requires of perl = ('4', '5.10.1', '136.el6_6.1')
1:perl-Pod-Escapes-1.04-136.el6_6.1.x86_64 has missing requires of perl = ('4', '5.10.1', '136.el6_6.1')
4:perl-libs-5.10.1-136.el6_6.1.x86_64 is a duplicate with 4:perl-libs-5.10.1-127.el6.x86_64
4:perl-libs-5.10.1-136.el6_6.1.x86_64 has missing requires of perl = ('4', '5.10.1', '136.el6_6.1')
3:perl-version-0.77-136.el6_6.1.x86_64 has missing requires of perl = ('4', '5.10.1', '136.el6_6.1')
最佳答案
您说您正在运行 Red Hat,但您的 yum 显示您有 CentOS 存储库。请先检查一下。
如果你安装了 yum-plugin-priorities(你可以检查它)
[root ~]# yum repolist
Loaded plugins: downloadonly, fastestmirror, keys, list-data, priorities, replace, versionlock
...
你需要添加
priority=1
到/etc/yum.repos.d/Centos-Base 中的 [base] 和 [updates],所以它看起来像这样:
[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
priority=1
#released updates
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
priority=1
然后运行(缓存清理可能不是必需的,但这是一个很好的措施:
yum clean all
yum update
我遇到这个问题有一段时间了,这就是解决方案:
--> Finished Dependency Resolution
Error: Package: 4:perl-libs-5.10.1-136.el6_6.1.x86_64 (updates)
Requires: perl = 4:5.10.1-136.el6_6.1
Installed: 4:perl-5.10.1-136.el6.x86_64 (@CentOS-6 - Base/6.6)
perl = 4:5.10.1-136.el6
Error: Package: 4:perl-Time-HiRes-1.9721-136.el6_6.1.x86_64 (updates)
Requires: perl = 4:5.10.1-136.el6_6.1
Installed: 4:perl-5.10.1-136.el6.x86_64 (@CentOS-6 - Base/6.6)
perl = 4:5.10.1-136.el6
Error: Package: 1:perl-Digest-SHA-5.47-136.el6_6.1.x86_64 (updates)
Requires: perl = 4:5.10.1-136.el6_6.1
Installed: 4:perl-5.10.1-136.el6.x86_64 (@CentOS-6 - Base/6.6)
perl = 4:5.10.1-136.el6
Error: Package: 1:perl-ExtUtils-ParseXS-2.2003.0-136.el6_6.1.x86_64 (updates)
Requires: perl = 4:5.10.1-136.el6_6.1
Installed: 4:perl-5.10.1-136.el6.x86_64 (@CentOS-6 - Base/6.6)
perl = 4:5.10.1-136.el6
Error: Package: 1:perl-Compress-Raw-Zlib-2.021-136.el6_6.1.x86_64 (updates)
Requires: perl = 4:5.10.1-136.el6_6.1
Installed: 4:perl-5.10.1-136.el6.x86_64 (@CentOS-6 - Base/6.6)
perl = 4:5.10.1-136.el6
Error: Package: 4:perl-devel-5.10.1-136.el6_6.1.x86_64 (updates)
Requires: perl = 4:5.10.1-136.el6_6.1
Installed: 4:perl-5.10.1-136.el6.x86_64 (@CentOS-6 - Base/6.6)
perl = 4:5.10.1-136.el6
Error: Package: 1:perl-Package-Constants-0.02-136.el6_6.1.x86_64 (updates)
Requires: perl = 4:5.10.1-136.el6_6.1
Installed: 4:perl-5.10.1-136.el6.x86_64 (@CentOS-6 - Base/6.6)
perl = 4:5.10.1-136.el6
...
关于linux - Yum 更新与 Perl 包有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28019533/
使用 yum 的优先级插件时,会显示已排除的软件包数量。有没有办法显示这些包的名称? 最佳答案 你总是可以像这样运行 yum: yum -d 9 install foo 并且部分日志输出是排除包。 编
我尝试使用命令 make && make install 安装 yum-3.4.3,但失败并显示以下日志: infra-bld4:/tmp/hxu2/yum-3.4.3> make for d in
我在 CentOs 8 上运行以下命令 $ cat /etc/redhat-release CentOS Linux release 8.2.2004 (Core) 我从一个干净且更新的 yum 数据
我知道 FI-WARE 在 http://repositories.testbed.fiware.org/ 提供了一个公共(public) yum 存储库可用于安装 FI-WARE 软件包,例如 Or
如何将 yum 存储库完全导入 Artifactory? 请注意,我指的是外部 yum存储库,并且由于在 Artifactory 中实现外部存储库镜像的方式,我无法使用 artifactory-rem
当我在 shell 中使用 yum 时,错误消息是没有名为 yum 的模块,所以我编辑/usr/bin/yum 将第一行更改为另一个版本的 python,但没有任何变化,当我使用不同的 python
我正在按照可以在此处找到的教程在 ec2 实例上设置 headless Selenium 刮刀: https://krbnite.github.io/Driving-Headless-Chrome-w
我们在我们公司使用自定义的 yum 存储库。某些事情导致他们失败 yum makecache命令。 我在 CentOS Linux release 7.7.1908 (Core) . 这是我们在运行
我正在尝试使用 RPM 升级软件包。我如何知道它是全新安装还是更新。是否有任何我可以检查的标志,或者我应该编写一个脚本来检查它是全新安装还是升级? 最佳答案 如果我很好地理解你的问题;我想你自己打包
在 Debian 衍生版中,在使用 apt-get install xxx 从 apt 安装软件之前,需要运行apt-get update .这会刷新包列表,以便正确解析依赖项等。 在使用 RHEL
我正在编写一个更新本地存储库 URL 的 yum 插件。当 repo URL 更改时,我想让 yum 运行 yum clean all 以确保没有缓存过时的信息。我知道当 yum clean [plu
许多 makefile 使用 pkg-config,但名称与包管理器无关(例如 yum/apt)。如何将 pkg-config 名称映射到它们?有什么窍门吗? 示例:如果我执行 yum searchN
我对 Linux 和 VDS 完全陌生。 VDS的操作系统是CentOS 6.9。我正在尝试安装apache、邮件服务器、php、mysql等。但我认为,要能够安装这些 'yum update' 或
当我执行 yum 时,像这样搜索 mysql-libs: $sudo yum search mysql-libs Loaded plugins: branch, downloadonly, faste
我在 CentOS 上使用 MySQL-Server。我 'yum remove' MySQL 服务器,然后再次 'yum install' 它。当我尝试使用 'mysqladmin' 为 'root
我见过两种安装包的方式,比如CentOS上的squid: 1.yum -y install squid 2.yum install squid 谁能告诉我它们之间有什么区别?另外,我使用的是 Cent
提示我出现以下错误 不匹配参数:python-devel 最佳答案 python2.7现在已经完全过时了。你应该和 python3 一起工作.因此你可以安装: dnf install python3-
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
尝试从任何存储库更新任何包时,很难找到导致以下错误的原因。我通过将所有其他人设置为禁用来测试多个 repo 协议(protocol)。我已经清理了所有缓存并删除了所有 dnf yum 缓存文件。 #
我已经在我的 VMServer 上部署了一个新的 CentOS 6.5 实例,其中安装了开发工具、X11 和其他几个软件包。第一天,似乎一切正常。后来我无法使用 yum 安装程序来更新或安装任何软件包
我是一名优秀的程序员,十分优秀!