Linux - yum update更新失败解决方案
Linux - yum update更新失败解决方案
yum update更新一半挂掉了,解决方案
yum update更新一半挂了,会有很多软件包留在仓库,引起各种各样的问题
首先
yum clean all
安装 package-cleanup工具,有下面命令就不需要安装了,有的系统会自带
yum install yum-utils
然后更新一下仓库
package-cleanup --cleandupes
现在yum 应该就恢复正常了
继续yum update 可能会有问题,没有请忽略
根据提示是systemtap这个软件引起的,
rpm -qa |grep systemtap
所以我暂时卸载掉了他的几个包
rpm -e systemtap-2.8-10.el7.x86_64 systemtap-devel-2.8-10.el7.x86_64
发现问题解决
这个软件貌似是监控程序,卸载不会引起问题,待观察中
再次更新仓库:
package-cleanup --cleandupes
重新安装systemtap
yum install -y systemtap
成功
引用:https://blog.csdn.net/qq_25611295/article/details/81081833
相关推荐
王艺强 2020-11-17
anchongnanzi 2020-09-21
84296033 2020-09-15
heimu 2020-08-02
herohope 2020-07-18
mrandy 2020-07-04
Jaystrong 2020-06-27
89921334 2020-06-26
debugjoker 2020-06-17
Linkaibin 2020-06-14
fanhuasijin 2020-06-14
Laxcus大数据技术 2020-06-13
hanshangzhi 2020-06-10
rainchxy 2020-06-07
Jerry 2020-06-01
lilygg 2020-05-29
lclcsmart 2020-05-27