-
Star
(123)
You must be signed in to star a gist -
Fork
(36)
You must be signed in to fork a gist
-
-
Save harv/f86690fcad94f655906ee9e37c85b174 to your computer and use it in GitHub Desktop.
#! /bin/sh | |
# update glibc to 2.17 for CentOS 6 | |
wget http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-2.17-55.el6.x86_64.rpm | |
wget http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-common-2.17-55.el6.x86_64.rpm | |
wget http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-devel-2.17-55.el6.x86_64.rpm | |
wget http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-headers-2.17-55.el6.x86_64.rpm | |
sudo rpm -Uvh glibc-2.17-55.el6.x86_64.rpm \ | |
glibc-common-2.17-55.el6.x86_64.rpm \ | |
glibc-devel-2.17-55.el6.x86_64.rpm \ | |
glibc-headers-2.17-55.el6.x86_64.rpm |
WARNING
This will brick many things in your Centos 6 distro, and there is no clean way to go back without knowing all symlinks before you install these.
If you are trying to do something with python that complains about requiring glibc over 2.12, consider using pip version 19 (pip install pip==19), it will use the manylinux2010 (based on Centos 6) wheels and may have c binaries for your system.
If you are compiling c binaries that need glibc > 2.12 its better to install glibc in a seperate folder and use PATH (LD_LIBRARY_PATH=/opt/glibc-2.17/lib)to link to it instead
Thanks for the suggestion! We built latest python 3.9 on CentOS 6 but it was giving error that unable to load libc.so.6, so had to configure LD_LIBRARY_PATH and works
Here is my variant based on @sluge's variant: https://gist.github.com/jhult/3c0d7cb5febb2348aa2166c0342e4fd1
Hello team,
kindly help me in getting EoS/EoL date for FOSS Glibc 2.17.0.
Regards,
Sahil
kindly help ..i am trying to install visual studio code in CentOS6
You can't.
kindly help ..i am trying to install visual studio code in CentOS6
You can't.
But why...i am using CentOS [10].What is the solution?
Upgrade OS.
rpm -Uvh --nodeps
#!/bin/sh
Update glibc ke 2.17 untuk CentOS 6
Unduh paket glibc
wget -c
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-2.17-55.el6.x86_64.rpm
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-common-2.17-55.el6.x86_64.rpm
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-devel-2.17-55.el6.x86_64.rpm
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-headers-2.17-55.el6.x86_64.rpm
Instalasi paket glibc
rpm -Uvh --nodeps glibc-*.el6.x86_64.rpm
Hapus file RPM
rm -f glibc-*.el6.x86_64.rpm
@hao - Thank you for posting this solution!! You saved lot of time!!