最近运行某个软件的时候提示“version `GLIBC_2.14' not found”,原因是编译的时候使用了高版本的GLIBC,而当前系统GLIBC版本较低导致,解决办法就是升级GLIBC
解决办法
由于是在Debian 7环境下遇到的这个问题,记录下Debian 7升级GLIBC的方法。
#编辑文件
vi /etc/apt/sources.list
#添加下面这行
deb http://ftp.debian.org/debian sid main
#进行更新
sudo apt-get update
sudo apt-get -t sid install libc6 gcc
更新完毕后记得删除deb http://ftp.debian.org/debian sid main
并再次更新sudo apt-get update
即可。
此文参考了:Debian7升级glibc和gcc