yum update Transaction Check Error

update系統時,發現其中一臺server居然提示:

Transaction Check Error:
file /usr/lib/perl5/5.8.8/CGI.pm from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/lib/perl5/5.8.8/Digest.pm from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/c2ph.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/cpan.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/dprofpp.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/perlvms.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/perlvos.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386

中間省略100行,都是關于perl的

file /usr/share/man/man1/perlwin32.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/perlxs.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/perlxstut.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/piconv.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/splain.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man1/xsubpp.1.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386
file /usr/share/man/man3/CGI.3pm.gz from install of perl-5.8.8-32.el5_7.6.x86_64 conflicts with file from package perl-5.8.8-32.el5_6.3.i386

Error Summary
-------------

經過仔細觀察是perl的問題,其他軟件單獨update都沒有問題。

看看錯誤內的大部分信息,就大概可以猜出問題的癥結。64位系統內的i386和x64軟件的沖突,那么卸載掉i386的沖突相關軟件,一般可以解決問題。

兩種情況,要不把perl的升級忽略掉,要不卸載了perl的i386,如果是其他軟件的沖突,一樣對待。

yum update --exclude=perl

找出要沖突的軟件

rpm -q perl --qf '%{NAME} %{VERSION} %{ARCH}'

得到輸出:

perl 5.8.8 x86_64
perl 5.8.8 i386

然后卸載掉沖突的i386包:

rpm -e perl.i386

再次升級.

---------------------------------------------------------------------------------------------------------------------------

文章來源于:http://www.hao32.com/webserver/605.html

轉載于:https://www.cnblogs.com/dingyingsi/p/3178399.html

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/378158.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/378158.shtml
英文地址,請注明出處:http://en.pswp.cn/news/378158.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

No module named ‘skimage.metrics‘在Anaconda3中的解決方法

1,進入Anaconda Prompt 2,進行安裝: pip install scikit-image 3,若還是報錯,嘗試進行更新一下 pip install scikit-image --upgrade

array_push_PHP array_push()函數與示例

array_pushPHP array_push()函數 (PHP array_push() function) array_push() function is used to insert/push one or more than one element to the array. array_push()函數用于將一個或多個元素插入/推入數組。 Syntax: 句法: array_push(array, elemement1, …

html5的canvas元素使用,HTML5canvas元素概念及使用方法介紹

一. canvas簡介??canvas是html5新增的元素,主要用于圖形的繪制。canvas本身沒有繪圖能力,一切都是通過javascript來完成的。二. canvas使用在html中添加canvas元素,定義canvas元素的高寬在javascript代碼中獲取canvas元素對象var canvas d…

Delphi XE2 之 FireMonkey 入門(10) - 常用結構 TPoint、TPointF、TSmallPoint、TSize、TRect、TRectF 及相關方法...

它們都是結構, TPointF、TRectF 屬新增, 其它也都有升級; 現在都擁有豐富的方法和方便的運算符重載; 且有一組相關的公共函數.這組內容重要的是它們都來自 System.Types 單元, 也就是不僅僅在 FM 中可用. TPoint: Create(); // {運算符重載} Equal; // NotEqual;…

【C++ grammar】數據類型轉換、列表初始化

布爾類型 C語言在其標準化過程中引入了bool、true和false關鍵字,增加了原生數據類型來支持布爾數據。 布爾類型的大小(所占的存儲空間)依賴于具體的編譯器實現。也可以用 sizeof運算符得到其占用的空間 Conversion between bool and int 0…

Python對自定義離散點進行指定多項式函數擬合

自定義離散點進行指定多項式函數擬合 用戶自己自己輸入坐標點,擬合函數可根據用戶輸入的多項式的最高次方進行自動擬合函數,擬合方法采用最小二乘法進行函數擬合。 (1,2),(2,5),(3,10),(4,17),(5,26),(6,37)(7,50),(8,65),(9,82) 很顯然是函數為二次函…

選哪個云計算平臺部署自己的網站?

技術發展讓我們可以擁有免費的空間啦! 現在的云計算平臺很多,各大公司都在做這個。 我最近用了國內訪問比較順暢的,新浪SAE,cloudfoundry,openshift。 開始用新浪SAE,因為豆子花光了,就轉到clou…

array_fill_PHP array_fill()函數與示例

array_fillPHP array_fill()函數 (PHP array_fill() Function) array_fill() function is used to fill the n elements in an array from given index with the specific value. array_fill()函數用于使用給定索引從給定索引中填充數組中的n個元素。 Syntax: 句法&#xff1a…

阜陽市計算機學校助學金申請書,計算機系貧困生助學金申請書

尊敬的學校領導:您好!我叫____來自計算機系____級____專業____班,我是一名喜愛讀書、熱愛集體并且性格溫和的男孩。我出生在一個貧窮而又落后的小村。家中有五口人,父母文化淺薄,在家務農,由于多年的勞累,父母兩人身體狀況較差,農業收入低微,…

【C++ grammar】C++簡化內存模型

1、stack(棧) 編譯器自動分配內存(函數內部定義得局部變量、形參) 2、堆(Heap) 一般由程序員分配釋放,若程序員不釋放,程序結束時可能由OS回收(new和delete) …

Effect of Diethylene Glycol on the Inkjet Printability of Reactive Dye Solution for Cotton Fabrics.

Effect of Diethylene Glycol on the Inkjet Printability of Reactive Dye Solution for Cotton Fabrics 二乙二醇對棉織物活性染料溶液噴墨印刷性能的影響 Diethylene Glycol 二乙二醇 Inkjet Printability 噴墨印刷性能 Reactive Dye Solution 活性染料溶液 Cotton Fabric…

一些常用的工具

可查看網站服務器使用的架構 http://toolbar.netcraft.com/site_report?urlwww.163.com 可在線制作 icon 圖標 http://www.damotou.com/index.php 好的UI設計 http://www.uiimg.com/ 轉載于:https://www.cnblogs.com/ouuy/p/3183613.html

Silverlight4.0教程之使用CompositeTransform復合變形特效實現倒影

微軟于PDC2009上發布Silverlight 4 Beta版,微軟在Silverlight 4版本中處理了約8000個的Silverlight終端用戶的請求,加入了一系列另開發人員興奮的新特性,最突出的主要體現在幾個方面: 開發工具增強:Visual Studio 2010…

julia矩陣運算_Julia中的復數及其運算

julia矩陣運算Julia| 復數 (Julia | Complex Numbers) The syntax to represent the complex number in Julia is: 在Julia中表示復數的語法為: Syntax: 句法: ABimHere, A and B are the values, and im is the global constant which is bound to th…

2019年的wps計算機考試題,2019年3月計算機一級WPS模擬題及答案(2.21)

【導語】2019年3月計算機一級考試備考正在進行中,為了方便考生及時有效的備考,那么,無憂考網為您精心整理了2019年3月計算機一級WPS模擬題及答案(2.21),把握機會抓緊練習吧。如想獲取更多計算機一級考試模擬題及備考資料&#xff…

Python求解多項式方程

例如:二次函數:f(x) 10x^2 - 14x 22,依次求解x1,2,3,4,5,6時函數表達式所對應的函數值。 import numpy as np #f(x) 10*x^2 - 14x 22 p np.array([10,-14,22])#這里存放的是系…

CSS中的border-radius屬性

CSS | 邊界半徑屬性 (CSS | border-radius Property) The border-radius property is commonly used to convert box elements into circles. We can convert box elements into the circle element by setting the border-radius to half of the length of a square element. …

【C++ grammar】Enhancement for Type System (C++11 對類型系統的增強)

數據類型 (Data type) int, long int, double, struct, char *, float [], int (*f)()… 計算機程序構造塊 計算機程序構造塊是不同大小粒度的計算機程序組成部分,它包括變量、表達式、函數或者模塊等。 類型系統 (Type System) 類型系統:在編程語言中…

.net romoting 的EventWrapper類

.net romoting 的EventWrapper類 注意:防火墻的問題 --------------------------------------------------- //定義廣播服務接口 [Serializable] public delegate void BroadCastEventHandler(string info); public interface IBroadCastService {…

一、織物組織相關基本概念

一、織物形成的五大運動:開口、引緯、打緯、送經、卷取 開口運動(先開口讓織物形成上下兩層) 引緯運動(在上下兩層經紗之間進行引緯,把緯紗穿入上下兩層經紗之間,從而實現經紗緯紗之間的交織) …