亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS yum段錯誤core dumped解決方法是怎樣的

發布時間:2021-09-28 15:33:11 來源:億速云 閱讀:621 作者:柒染 欄目:系統運維

本篇文章給大家分享的是有關CentOS yum段錯誤core dumped解決方法是怎樣的,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

今天在yum install 或者yum update的時候都提示段錯誤(core dumped),然后終止運行了。

代碼如下:


[root@lee ~]# yum -y update
Loaded plugins: fastestmirror, refresh-packagekit
Determining fastest mirrors
* base: mirror.esocc.com
* extras: mirror.esocc.com
* soluslabs: mirror.us1.soluslabs.net
* updates: mirror.esocc.com
base                                                                                                                                           | 3.7 kB     00:00    
base/primary_db                                                                                                                                | 4.4 MB     00:14    
extras                                                                                                                                         | 3.4 kB     00:00    
extras/primary_db                                                                                                                              |  18 kB     00:00    
soluslabs                                                                                                                                      |  951 B     00:00    
soluslabs/primary                                                                                                                              |  11 kB     00:00    
段錯誤 (core dumped)


到谷歌上找各種大蝦的文章還是無濟于事,只好認真查看錯誤!首先我確定了不是因為Python版本的原因,因為之前安裝了一個Python2.7.4。

代碼如下:


# vim /usr/bin/yum


查看第一行

代碼如下:


#!/usr/bin/python2.6
import sys
try:
   import yum
except ImportError:
   print >> sys.stderr, """\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

  %s

Please install a package which provides this module, or
verify that the module is installed correctly.

It's possible that the above module doesn't match the
current version of Python, which is:
%s

If you cannot solve this problem yourself, please go to
the yum faq at:
 http://yum.baseurl.org/wiki/Faq
 
""" % (sys.exc_value, sys.version)
   sys.exit(1)

sys.path.insert(0, '/usr/share/yum-cli')
try:
   import yummain
   yummain.user_main(sys.argv[1:], exit_code=True)
except KeyboardInterrupt, e:
   print >> sys.stderr, "\n\nExiting on user cancel."
   sys.exit(1)


第一行是

代碼如下:


#!/usr/bin/python2.6


直接看這個Python2.6是不是有問題

代碼如下:


[root@lee ~]# /usr/bin/python2.6 -V
Python 2.6.6


正確識別版本號,沒問題。在yum clean all 以后都無濟于事的時候,我突然想到會不會/etc/yum.repos.d/目錄下多了東西?

代碼如下:


[root@lee ~]# ls  /etc/yum.repos.d/
CentOS-Base.repo  CentOS-Debuginfo.repo  CentOS-Media.repo  CentOS-Vault.repo  soluslabs.repo


發現里邊有一個soluslabs.repo跟我yum命令報錯的地方都是一個資源庫,看來問題就在這了。

代碼如下:


soluslabs                                                                                                                                      |  951 B     00:00    
soluslabs/primary                                                                                                                              |  11 kB     00:00    
段錯誤 (core dumped)


段錯誤的上一行是soluslabs,于是我直接rm它

代碼如下:


# rm -f /etc/yum.repos.d/soluslabs.repo


然后再clean下

代碼如下:


# yum clean all


好滴,我們再回到熟悉的yum update

代碼如下:


[root@lee ~]# yum -y update
Loaded plugins: fastestmirror, refresh-packagekit
Determining fastest mirrors
* base: mirrors.tuna.tsinghua.edu.cn
* extras: mirrors.tuna.tsinghua.edu.cn
* updates: mirrors.tuna.tsinghua.edu.cn
base                                                                                                                                           | 3.7 kB     00:00    
base/primary_db                                                                                                                                | 4.4 MB     00:20    
extras                                                                                                                                         | 3.4 kB     00:00    
extras/primary_db                                                                                                                              |  18 kB     00:00    
updates                                                                                                                                        | 3.4 kB     00:00    
updates/primary_db                                                                                                                             | 3.9 MB     00:13    
Setting up Update Process
Resolving Dependencies
--> Running transaction check
---> Package bash.x86_64 0:4.1.2-14.el6 will be updated
---> Package bash.x86_64 0:4.1.2-15.el6_4 will be an update
---> Package bind-libs.x86_64 32:9.8.2-0.17.rc1.el6_4.4 will be updated


搞定,收工!

另一個解決方法:

使用yum命令安裝東西或者yum update時都提示以下錯誤:

代碼如下:


[root@lee ~]# yum update
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: mirrors.tuna.tsinghua.edu.cn
* extras: mirrors.tuna.tsinghua.edu.cn
* soluslabs: mirror.eu1.soluslabs.net
* updates: mirrors.tuna.tsinghua.edu.cn
段錯誤 (core dumped)


解決方法:

代碼如下:


[root@lee ~]# rpm -q zlib zlib-devel
zlib-1.2.3-29.el6.x86_64
zlib-devel-1.2.3-29.el6.x86_64
[root@lee ~]# cp /usr/lib64/lib
Display all 1910 possibilities? (y or n)
[root@lee ~]# cp /usr/lib64/libz.so /usr/local/lib64/
[root@lee ~]# cd /usr/local/lib64/
[root@lee lib64]# ln -sf libz.so libz.so.1
[root@lee lib64]# yum clean all


我的系統是CentOS 64位,如果是32位的在賦值libz.so時這么復制

代碼如下:


[root@lee ~] cp /usr/lib/libz.so /usr/local/lib/


然后重新yum update就可以了

以上就是CentOS yum段錯誤core dumped解決方法是怎樣的,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广昌县| 通城县| 始兴县| 尼勒克县| 土默特右旗| 辰溪县| 桑植县| 漳平市| 栾川县| 星座| 新乡县| 定襄县| 株洲县| 如东县| 德阳市| 河源市| 米泉市| 简阳市| 岢岚县| 修文县| 鲁甸县| 上高县| 彭阳县| 新民市| 湾仔区| 司法| 白朗县| 历史| 荃湾区| 宣威市| 清新县| 梁山县| 巴林右旗| 新兴县| 漳平市| 五家渠市| 宝鸡市| 韶山市| 岢岚县| 新龙县| 绥棱县|