如何检查Linux上的glibc版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何检查Linux上的glibc版本相关的知识,希望对你有一定的参考价值。

参考技术A

1、首先连接上Linux主机,如图所示,使Linux主机处于一个命令状态。

2、然后看到是处于命令行状态,如图所示,接下需要输入rpm -qi glibc的命令。

3、最后,输入之后,回车键确定,进入glibc的详细信息,其中“Version”后面显示的就是版本了,这样操作即可解决问题。

markdown 如何检查支持的glibc版本

# Check the supported GLIB symbols
You can check the gcc version and other useful information running directly the libc.so library (yes, you can run the library from console):
You would see something like this:

```
user@host-machine:~$ /lib/x86_64-linux-gnu/libc.so.6
GNU C Library (Ubuntu GLIBC 2.27-3ubuntu1) stable release version 2.27.
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
Compiled by GNU CC version 7.3.0.
libc ABIs: UNIQUE IFUNC
For bug reporting instructions, please see:
<https://bugs.launchpad.net/ubuntu/+source/glibc/+bugs>.

```

To check the c++ versions:

```
$ objdump -x /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCXX_
$ objdump -x /lib/x86_64-linux-gnu/libc.so.6 | grep GLIBC_
```

To check the GLIBC versions

```
& ldd --version
```

The libc.so file is stored in (ubuntu): 

```
/lib/x86_64-linux-gnu/libc.so.6
```

以上是关于如何检查Linux上的glibc版本的主要内容,如果未能解决你的问题,请参考以下文章

linux下如何更新glibc包

如何检查 Amazon Linux 机器 (AMI) 上的 Tomcat 版本?

安装glibc十分麻烦,还要检查版本的问题

ubuntu下怎么查看glibc的版本

centos 7 linux系统安装 mysql5.7.17(glibc版)

Linux 系统安装下安装 mysql5.7(glibc版)