CentOS7下升级GLIBC2.31

简介: CentOS7下升级GLIBC2.31

640.jpg

1、当前系统版本及GLIBC版本信息


[root@localhost ~]# cat /etc/redhat-release 
CentOS Linux release 7.6.1810 (Core) 
[root@localhost ~]# uname -r
3.10.0-957.el7.x86_64
[root@localhost ~]#  strings /lib64/libc.so.6 | grep GLIBC
[root@localhost ~]# ll /lib64/libc.so*


640.png


640.png

640.png


2、源码编译升级gcc9.3.0


1)编译升级gcc


wget https://mirrors.aliyun.com/gnu/gcc/gcc-9.3.0/gcc-9.3.0.tar.gz
cp gcc-9.3.0.tar.gz /opt
cd /opt
tar -zxf gcc-9.3.0.tar.gz
cd gcc-9.3.0/
 ./contrib/download_prerequisites
建议先手动下载依赖的这四个包,下载地址ftp://gcc.gnu.org/pub/gcc/infrastructure/
cat /proc/cpuinfo| grep "processor"| wc -l
mkdir build
cd build
../configure --enable-checking=release --enable-language=c,c++ --disable-multilib --prefix=/usr
make -j6
make install

640.png

640.png

640.png

640.png

640.png

2)升级成功后gcc版本检查


cd /usr/lib64
ll libstdc++*
gcc -v
gcc --version


640.png


3、源码编译升级make


1)编译升级make


wget https://mirrors.aliyun.com/gnu/make/make-4.3.tar.gz
cp make-4.3.tar.gz /opt
cd /opt/
tar -zxf make-4.3.tar.gz 
cd make-4.3/
mkdir build
cd build
../configure --prefix=/usr && make && make install


640.png

2)检查升级后的make版本信息


make -v


640.png

4、升级glibc-2.31


cd /opt
wget https://mirrors.aliyun.com/gnu/glibc/glibc-2.31.tar.gz
tar -zxf glibc-2.31.tar.gz
cd glibc-2.31/
cat INSTALL | grep -E "newer|later"
mkdir build
cd build
../configure  --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin --disable-sanity-checks --disable-werror
yum install python3
make -j6
make install
make localedata/install-locales


640.png

640.png


报错是由于python版本较低

下面yum install python3解决后重新配置并make编译安装

../configure  --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin --disable-sanity-checks --disable-werror
make -j6
make install


640.png

640.png

最后验证升级后的glibc版本


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



640.png


640.png

相关文章
|
6月前
|
Linux Perl
Linux centos7升级内核(两种方法:内核编译和yum更新)
Linux centos7升级内核(两种方法:内核编译和yum更新)
2021 1
Linux centos7升级内核(两种方法:内核编译和yum更新)
|
6月前
|
安全 Linux
CentOS7下快速升级至OpenSSH9.4p1安全版本
CentOS7下快速升级至OpenSSH9.4p1安全版本
516 1
|
6月前
|
安全 Linux Shell
CentOS7下快速升级至OpenSSH9.3p2安全版本
CentOS7下快速升级至OpenSSH9.3p2安全版本
462 0
|
安全 Linux
Centos 7.x 升级内核
千万不要小瞧这操作。
377 0
|
2月前
|
中间件 Linux vr&ar
Centos7升级Glibc
Centos7升级Glibc
|
2月前
|
Linux 数据安全/隐私保护 Perl
CentOS7中升级OpenSSL详细教程
这篇文章提供了在CentOS 7系统中升级OpenSSL到3.2版本的详细步骤,包括备份现有配置、安装依赖、下载安装新版本以及验证安装结果。
665 1
|
1月前
|
Linux 编译器 测试技术
【C++】CentOS环境搭建-快速升级G++版本
通过上述任一方法,您都可以在CentOS环境中高效地升级G++至所需的最新版本,进而利用C++的新特性,提升开发效率和代码质量。
159 64
|
1月前
|
Linux 编译器 测试技术
【C++】CentOS环境搭建-快速升级G++版本
通过上述任一方法,您都可以在CentOS环境中高效地升级G++至所需的最新版本,进而利用C++的新特性,提升开发效率和代码质量。
191 63
|
3月前
|
Linux
centos7升级内核到最新稳定版
centos7升级内核到最新稳定版
371 0
|
3月前
|
Linux Python
CentOS7升级python3到最新版
CentOS7升级python3到最新版
179 0