且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

运行chromedriver时出错:"/lib64/libc.so.6:找不到版本'GLIBC_2.14'"在CentOS6中

更新时间:2023-02-02 21:09:36

/lib64/libc.so.6: version GLIBC_2.15

您要运行的二进制文件是基于GLIBC-2.15的系统构建的.它不会在具有较旧GLIBC的任何系统上运行(并且您的GLIBC早于2.14).

The binary you are trying to run was built on a GLIBC-2.15 based system. It will not run on any system with older GLIBC (and your GLIBC is older than 2.14).

/usr/lib64/libstdc++.so.6: version GLIBCXX_3.4.15

同样,您的二进制文件要求libstdc++.so.6 3.4.15或更高版本(3.4.15对应于GCC 4.6).

Likewise, your binary requires libstdc++.so.6 3.4.15 or above (3.4.15 corresponds to GCC 4.6).

您需要在较新的系统上运行此二进制文件,或为较旧的系统构建该二进制文件.

You need to run this binary on a newer system, or to get that binary built for an older one.

在哪里可以找到带有GLIBC-2.15的操作系统

And where can I find an OS with GLIBC-2.15

使用 distrowatch.com .例如,此链接显示没有符合要求的CentOS发行版,但是 Fedora 17和更高版本已经很新了.

Use distrowatch.com. For example, this link shows that there are no CentOS distributions that fit the bill, but Fedora 17 and later are sufficiently new.