1. 程式人生 > >linux故障解決-centos7刪除沖突的包

linux故障解決-centos7刪除沖突的包

ffffff mar lock rem yum安裝 用法 linu 有時 rom

centos7使用yum安裝軟件非常方便,升級更新也很給力,但是有時後,在升級包後,也升級了很多依賴包,在裝其他的軟件包時就有可能造成沖突,導致後來的軟件包安裝不上

一次,在安裝python-devel時,發現安裝不上去,經查看,主要是python-devel與python2相關軟件包沖突,如下所示:
技術分享圖片

為了解決這個問題,可以按照如下方式進行
首先安裝 yum-utils 套件
  
yum install yum-utils
執行 clean duplicate package
package-cleanup --cleandupes
以下為命令用法

Duplicate Package Options:
--dupes             Scan for duplicates in your rpmdb
--cleandupes        Scan for duplicates in your rpmdb and remove older
--noscripts         disable rpm scriptlets from running when cleaning duplicates

linux故障解決-centos7刪除沖突的包