Skip to content

Instantly share code, notes, and snippets.

@kanibaspinar
Created February 18, 2017 13:33
Show Gist options
  • Save kanibaspinar/f4f4b751dd26e99ef0b1b0d96f8439ae to your computer and use it in GitHub Desktop.
Save kanibaspinar/f4f4b751dd26e99ef0b1b0d96f8439ae to your computer and use it in GitHub Desktop.
Glibc 2.14 Centos 6.8 Update
# Glibc 2.12 sürüm stabilizesi açısından bir çok yazılımsal açık ve performans kaybına neden olmaktadır.
#Bu yüzden 2.14 sürümüne geçiş yapmak sistem sağlığı açısından daha performanslı ve stabil bir altyapıya sahip olmanızı sağlar.
mkdir ~/glibc_install; cd ~/glibc_install
wget http://ftp.gnu.org/gnu/glibc/glibc-2.14.tar.gz
tar zxvf glibc-2.14.tar.gz
cd glibc-2.14
mkdir build
cd build
../configure --prefix=/opt/glibc-2.14
make -j4
sudo make install
export LD_LIBRARY_PATH=/opt/glibc-2.14/lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment