glibc2.12升级glibc2.14源码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了glibc2.12升级glibc2.14源码相关的知识,希望对你有一定的参考价值。

升级步骤如下:

1、使用 strings /lib64/libc.so.6 |grep GLIBC查看目前系统的glibc版本

GLIBC_2.2.5
GLIBC_2.2.6
GLIBC_2.3
GLIBC_2.3.2
GLIBC_2.3.3
GLIBC_2.3.4
GLIBC_2.4
GLIBC_2.5
GLIBC_2.6
GLIBC_2.7
GLIBC_2.8
GLIBC_2.9
GLIBC_2.10
GLIBC_2.11
GLIBC_2.12
GLIBC_2.13
GLIBC_2.14
GLIBC_PRIVATE

2、glibc2.14源码下载

http://ftp.gnu.org/gnu/glibc/glibc-2.14.tar.gz

3、glibc安装: 

[[email protected] ~]# tar xvf glibc-2.14.tar.gz
[[email protected] ~]# cd glibc-2.14
[[email protected] glibc-2.14]# mkdir build
[[email protected] glibc-2.14]# cd ./build
[[email protected] build]# ../configure --prefix=/opt/glibc-2.14
[[email protected] build]# make
[[email protected] build]# make install
 
4、创建glibc2.14的软链
ln -sf /opt/glibc-2.14/lib/libc-2.14.so /lib64/libc.so.6
特别说明,千万不要先删除之前的软链,直接加-f参数覆盖就行了,否则无法开机
 
5、设置语言相关的locale-archive文件

[[email protected] ~]# find / -name locale-archive   ###找出glibc2.12的语言相关的 locale-archive 文件
/usr/lib/locale/locale-archive

 

[[email protected] locale]# cp /usr/lib/locale/locale-archive /opt/app/glibc-2.14/lib/locale/   ###复制到编译好的glibc 2.14的lib/locale中,记得先创建locale目录

[[email protected] locale]# /opt/app/glibc-2.14/bin/localedef -i en_US -f UTF-8 en_US.UTF-8  ##运行生成相应的locale配置文件

 

 

 

以上是关于glibc2.12升级glibc2.14源码的主要内容,如果未能解决你的问题,请参考以下文章

如何知道我的程序在运行时实际使用的共享库?

glibc2.12升级至2.15

Android Api 27 在 Android 8.0 上出现 Only fullscreen opaque activities can request orientation 的解决情况(代码片

使用腾讯互动直播 遇到的坑 'GLIBC_2.14' not found 问题解决

如何升级到python3版本并且安装pip3及ipython3

JavaCV升级1.5.6之后遇到h265/hevc编码的视频无法打开编解码器avcodec_open2() error -1:Could not open video codec异常解决办法(代码片