zoukankan      html  css  js  c++  java
  • centos 6.x系统升级glibc库至2.15版本的快速解决办法

    CentOS 6.x系统升级glibc库至2.15版本的快速解决办法 

    1、先确保相关软件包已经安装

    yum install -y glibc
    
    yum install -y glibc-common
    
    yum install -y glibc-devel
    
    yum install -y glibc-headers
    
    yum install -y glibc-static
    
    yum install -y glibc-utils

    2、下载升级所需软件包

    mkdir /usr/local/glibc-2.15
    
    cd /usr/local/glibc-2.15
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-2.15-60.el6.i686.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-devel-2.15-60.el6.i686.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-utils-2.15-60.el6.x86_64.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-2.15-60.el6.x86_64.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-common-2.15-60.el6.x86_64.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-static-2.15-60.el6.x86_64.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-static-2.15-60.el6.i686.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-devel-2.15-60.el6.x86_64.rpm
    
    wget http://ftp.redsleeve.org/pub/steam/glibc-headers-2.15-60.el6.x86_64.rpm

    3、升级

    rpm -Uvh *.rpm

    4、验证升级结果

    strings /lib64/libc.so.6 |grep GLIBC

  • 相关阅读:
    9月9号作业
    9月9号笔记
    jupyter的补充
    jupyter的使用
    9月6号作业
    编程语言的分类
    计算机组成
    计算机组成的补充
    面向对象基础
    9月2号作业
  • 原文地址:https://www.cnblogs.com/sky-cheng/p/10565425.html
Copyright © 2011-2022 走看看