Created
February 18, 2017 13:33
-
-
Save kanibaspinar/f4f4b751dd26e99ef0b1b0d96f8439ae to your computer and use it in GitHub Desktop.
Glibc 2.14 Centos 6.8 Update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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