位置: 编程技术 - 正文
推荐整理分享CentOS yum 段错误 (core dumped)解决方法(centos yum报错),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:centos7报错,centos error mounting,centos destination host unreachable,centos yum报错,centos could not retrieve,centos7报错,centos7报错,centos yum报错,内容如对您有帮助,希望把文章链接给更多的朋友!
今天在yum install 或者yum update的时候都提示段错误(core dumped),然后终止运行了。复制代码代码如下:[root@lee ~]# yum -y updateLoaded plugins: fastestmirror, refresh-packagekitDetermining fastest mirrors * base: mirror.esocc.com * extras: mirror.esocc.com * soluslabs: mirror.us1.soluslabs.net * updates: mirror.esocc.combase | 3.7 kB : base/primary_db | 4.4 MB : extras | 3.4 kB : extras/primary_db | kB : soluslabs | B : soluslabs/primary | kB : 段错误 (core dumped)到谷歌上找各种大虾的文章还是无济于事,只好认真查看错误!首先我确定了不是因为Python版本的原因,因为之前安装了一个Python2.7.4。复制代码代码如下:# vim /usr/bin/yum查看第一行复制代码代码如下:#!/usr/bin/python2.6import systry: import yumexcept ImportError: print >> sys.stderr, """There was a problem importing one of the Python modulesrequired to run yum. The error leading to this problem was: %s Please install a package which provides this module, orverify that the module is installed correctly. It's possible that the above module doesn't match thecurrent version of Python, which is:%s If you cannot solve this problem yourself, please go to the yum faq at: """ % (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, "nnExiting on user cancel." sys.exit(1)第一行是复制代码代码如下:#!/usr/bin/python2.6直接看这个Python2.6是不是有问题复制代码代码如下:[root@lee ~]# /usr/bin/python2.6 -VPython 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 | B : soluslabs/primary | kB : 段错误 (core dumped)段错误的上一行是soluslabs,于是我直接rm它复制代码代码如下:# rm -f /etc/yum.repos.d/soluslabs.repo然后再clean下复制代码代码如下:# yum clean all好滴,我们再回到熟悉的yum update复制代码代码如下:[root@lee ~]# yum -y updateLoaded plugins: fastestmirror, refresh-packagekitDetermining fastest mirrors * base: mirrors.tuna.tsinghua.edu.cn * extras: mirrors.tuna.tsinghua.edu.cn * updates: mirrors.tuna.tsinghua.edu.cnbase | 3.7 kB : base/primary_db | 4.4 MB : extras | 3.4 kB : extras/primary_db | kB : updates | 3.4 kB : updates/primary_db | 3.9 MB : Setting up Update ProcessResolving Dependencies--> Running transaction check---> Package bash.x_ 0:4.1.2-.el6 will be updated---> Package bash.x_ 0:4.1.2-.el6_4 will be an update---> Package bind-libs.x_ :9.8.2-0..rc1.el6_4.4 will be updated搞定,收工!
另一个解决方法:
使用yum命令安装东西或者yum update时都提示以下错误:复制代码代码如下:[root@lee ~]# yum updateLoaded plugins: fastestmirror, refresh-packagekitLoading 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-develzlib-1.2.3-.el6.x_zlib-devel-1.2.3-.el6.x_[root@lee ~]# cp /usr/lib/libDisplay all possibilities? (y or n)[root@lee ~]# cp /usr/lib/libz.so /usr/local/lib/[root@lee ~]# cd /usr/local/lib/[root@lee lib]# ln -sf libz.so libz.so.1[root@lee lib]# yum clean all我的系统是CentOS 位,如果是位的在赋值libz.so时这么复制复制代码代码如下:[root@lee ~] cp /usr/lib/libz.so /usr/local/lib/然后重新yum update就可以了
CentOS VPS服务器安装图形化界面教程 一早就想着给VPS安装一个图形化界面,方便做Vagex网赚,但一直忙于工作,没有腾出手来做这些东西。今天闲下来了,就捣鼓了一下。首先使用的是网上
CentOS下vi编辑器用法大全 vi编辑器是所有Unix及Linux系统下标准的编辑器,它的强大不逊色于任何最新的文本编辑器,这里只是简单地介绍一下它的用法和一小部分指令。由于对Uni
Linux操作系统 CentOS6.5开机自动挂载硬盘 CentOS是社区企业操作系统,是Linux发行版之一,它是来自于RedHatEnterpriseLinux依照开放源代码规定释出的源代码所编译而成。由于出自同样的源代码,因此
标签: centos yum报错
本文链接地址:https://www.jiuchutong.com/biancheng/353771.html 转载请保留说明!上一篇:CentOS启动失败 CentOS开机卡在进度条的解决方法(centos启动不了图形界面)
下一篇:CentOS VPS服务器安装图形化界面教程(centos云服务器)
友情链接: 武汉网站建设