Skip to content

Instantly share code, notes, and snippets.

@wagenet
wagenet / glibc.md
Last active July 11, 2025 15:52
glibc Versions

glibc Versions

List of oldest supported version of top 10 Linux Distros and their glibc version according to distrowatch.com.

Summary

Out of all versions with published EOLs, 2.12 is the oldest glibc still active, found in CentOS 6.8.

If CentOS 6 and 7 are eliminated, the oldest glibc is 2.23 in Ubuntu and Slackware.

@sjfloat
sjfloat / nix.csh
Last active July 29, 2021 04:19
port of nix.sh
set NIX_LINK="$HOME/.nix-profile"
# Set the default profile.
test -L "$NIX_LINK"
if ( $status != 0 ) then
echo "creating $NIX_LINK" >&2
set _NIX_DEF_LINK=/nix/var/nix/profiles/default
/nix/store/rznhi2hyzcgckk7yb2662lr57sb906ps-coreutils-8.24/bin/ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
endif