服务器上编译glibc2.29版本导致命令不能用
Inconsistency detected by ld.so: dl-call-libc-early-init.c: 37: _dl_call_libc_early_init: Assertion `sym != NULL' failed!
下面是造成不可用的原因
1.编译完gcc 2.29版本后,开始做映射,以达到能使用最新版本的glibcwget -4c https://ftp.gnu.org/gnu/glibc/glibc-2.29.tar.gz
tar -zxvf glibc-2.29.tar.gz
cd glibc-2.29
mkdir build_dir
cd build_dir
sudo ../configure --prefix=/opt/glibc`编译完后 我映射到/opt/glibc目录下`
[root@localhost ld.so.conf.d][root@localhost etc]
[root@localhost ld.so.conf.d]
glibc-2.29.conf `更改环境变量`
[root@localhost ld.so.conf.d]`做映射`
[root@localhost ld.so.conf.d]
/opt/glibc/lib
/opt/glibc-2.29/lib
/opt/glibc-2.29/lib
/opt/glibc/lib`刷新`
[root@localhost ld.so.conf.d]`刷新后便不能使用正常的命令了`
[root@localhost app]
Inconsistency detected by ld.so: dl-call-libc-early-init.c: 37: _dl_call_libc_early_init: Assertion `sym != NULL' failed!
恢复可用的方式
[root@localhost ld.so.conf.d][root@localhost ld.so.conf.d]`刷新`
[root@localhost ld.so.conf.d]至此: 服务器又可用了