下載地址:http://ftp.gnu.org/gnu/glibc/vim
編譯和安裝glibc:ui
configure過程當中報錯:spa
These critical programs are missing or too old: gawk bisonget
apt-get install bisonit
結果:執行make install失敗後致使多數系統命令(ls make這些)不能用編譯
//進入解壓目錄
cd glibc-2.17
//新建build目錄
mkdir build
cd buildawk
//編譯
../configure --prefix=/opt/glibc-2.17變量
//安裝
make && make installftp
//添加環境變量
vim /etc/profile
//在文件里加入這一行,保存退出
export LD_LIBRARY_PATH = $LD_LIBRARY_PATH:/opt/glibc-2.17/libfile
//使之生效 source /etc/profile