Skip to content

Instantly share code, notes, and snippets.

View bogre's full-sized avatar

bogre

View GitHub Profile
@bogre
bogre / installglibc.sh
Last active February 16, 2023 00:29
install alternate glibc linux
mkdir $HOME/glibc/ && cd $HOME/glibc
wget http://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz
tar -xvzf glibc-2.33.tar.gz
mkdir build
mkdir glibc-2.33-install
cd build
~/glibc/glibc-2.33/configure --prefix=$HOME/glibc/glibc-2.33-install
make
make install