You may have success running everything in an Ubuntu 22.04 chroot or container. I haven’t tried running the sim GUI in such setups recently so I can’t offer much advice on this front. Answer from auscompgeek on chiefdelphi.com
🌐
Debian
packages.debian.org › source › bullseye › glibc
Debian -- Details of source package glibc in bullseye
/ Packages / bullseye (oldoldstable) / Source / misc / glibc · [ bullseye ] [ bullseye-updates ] [ bookworm ] [ trixie ] [ forky ] [ sid ] [ experimental ] Bug Reports · Developer Information · Debian Changelog · Copyright File · Debian Source Repository (Git) Debian Patch Tracker ·
Debian Packages Search
bullseye (11.0) bullseye-updates · bullseye-backports · bookworm (12.0) bookworm-updates · bookworm-backports · trixie (13.0) trixie-updates · trixie-backports · forky · sid · experimental · There is also a list of packages recently added to experimental.
List of sections in "trixie"
bullseye (oldoldstable) (haskell): Binding between SQL database values and haskell records.
List of sections in "bookworm"
Limit to suite: [bullseye] [bullseye-updates] [bullseye-backports] [bookworm] [bookworm-updates] [bookworm-backports] [trixie] [trixie-updates] [trixie-backports] [forky] [sid] [experimental] · Limit to a architecture: [alpha] [amd64] [arm] [arm64] [armel] [armhf] [avr32] [hppa] [hurd-i386] ...
🌐
Debian
packages.debian.org › bullseye › glibc-source
Client Challenge
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
Discussions

`glibc` version too damn high?
The glibc version on current Debian 11 Bullseye (stable) is 2.31. More on github.com
🌐 github.com
12
November 29, 2022
Debian 11 Bullseye (Stable) still uses Glibc version 2.31
deb privaxy: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.32' not found (required by privaxy) privaxy: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.34' not found (required by privax... More on github.com
🌐 github.com
0
March 9, 2023
How do you upgrade glibc on Debian? - Stack Overflow
I heard I can do it using apt-get install libc6, but I need to add something to /etc/apt/sources.list to receive the newest glibc version. What should I do? More on stackoverflow.com
🌐 stackoverflow.com
V4.5 possible regression: "version `GLIBC_2.35' not found" on Debian Bullseye (Stable/11) (ESPTOOL-623)
V4.5 possible regression: "version `GLIBC_2.35' not found" on Debian Bullseye (Stable/11) (ESPTOOL-623)#843 More on github.com
🌐 github.com
4
February 17, 2023
🌐
Debian
packages.debian.org › bullseye › glibc-doc-reference
Debian -- Details of package glibc-doc-reference in bullseye
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
Debian
packages.debian.org › glibc
Debian -- Package Search Results -- glibc
bullseye (oldoldstable) (devel): GNU C Library: sources 2.31-13+deb11u13 [security]: all
🌐
GitHub
github.com › nushell › nushell › issues › 7282
`glibc` version too damn high? · Issue #7282 · nushell/nushell
November 29, 2022 - The glibc version on current Debian 11 Bullseye (stable) is 2.31.
Author   nushell
🌐
Debian
packages.debian.org › bullseye › glibc-doc
Debian -- Details of package glibc-doc in bullseye
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
Debian
packages.debian.org › src:glibc
I Challenge Thee
I Challenge Thee · AI scrapers break the web, to use this page you'll need JavaScript enabled
Find elsewhere
🌐
Launchpad
launchpad.net › debian › bullseye › +source › glibc
Bullseye (11) : glibc package : Debian
All versions of glibc source in Debian · Release · The package versions that were published when the distribution release was made. glibc 2.31-13+deb11u11 (main) glibc 2.31-13+deb11u6 (main) glibc 2.31-13+deb11u3 (main) glibc 2.31-13+deb11u2 ...
🌐
GitHub
github.com › Barre › privaxy › issues › 77
Debian 11 Bullseye (Stable) still uses Glibc version 2.31 · Issue #77 · Barre/privaxy
March 9, 2023 - Debian 11 Bullseye (Stable) still uses Glibc version 2.31#77 · Copy link · mrkopl · opened · on Mar 9, 2023 · Issue body actions ·
Author   Barre
Top answer
1 of 3
95

I was able to install libc6 2.17 in Debian Wheezy by editing the recommendations in perror's answer:

IMPORTANT

You need to exit out of your display manager by pressing CTRL+ALT+F1. Then you can stop x (slim) with sudo /etc/init.d/slim stop

(replace slim with mdm or lightdm or whatever)

Add the following line to the file /etc/apt/sources.list:

deb http://ftp.debian.org/debian experimental main

Should be changed to:

deb http://ftp.debian.org/debian sid main

Then follow the rest of perror's post:

Update your package database:

apt-get update

Install the glibc package:

apt-get -t sid install libc6-amd64 libc6-dev libc6-dbg

IMPORTANT

After updating libc6, restart the computer, and you should comment out or remove the sid source you just added (deb http://ftp.debian.org/debian sid main), or else you risk upgrading your whole distro to sid.

2 of 3
29

Your script contains errors as well, for example if you have dos2unix installed your install works but if you don't like I did then it will fail with dependency issues.

I found this by accident as I was making a script file of this to give to my friend who is new to Linux and because I made the scripts on windows I directed him to install it, at the time I did not have dos2unix installed thus I got errors.

here is a copy of the script I made for your solution but have dos2unix installed.

#!/bin/sh
echo "deb http://ftp.debian.org/debian sid main" >> /etc/apt/sources.list
apt-get update
apt-get -t sid install libc6 libc6-dev libc6-dbg
echo "Please remember to hash out sid main from your sources list. /etc/apt/sources.list"

this script has been tested on 3 machines with no errors.

🌐
Debian
packages.debian.org › source › testing › glibc
Details of source package glibc in trixie
October 1, 2022 - JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
Debian
packages.debian.org › bullseye › libc6
Debian -- Details of package libc6 in bullseye
[ bullseye ] [ bullseye-updates ] [ bookworm ] [ trixie ] [ forky ] [ sid ] [ experimental ] [ Source: glibc ] Bug Reports · Developer Information · Debian Changelog · Copyright File · Debian Patch Tracker ·
🌐
Google Groups
groups.google.com › g › linux.debian.bugs.dist › c › SJ_2IrW_CrA
Bug#1005949: bullseye-pu: package glibc/2.31-13+deb11u3
February 17, 2022 - Upload details ============== Package: glibc Version: 2.31-13+deb11u3 Explanation: fix bad conversion from ISO-2022-JP-3 with iconv [CVE-2021-43396]; fix buffer overflow issues [CVE-2022-23218 CVE-2022-23219]; fix use-after-free issue [CVE-2021-33574]; stop replacing older versions of ...
🌐
GitHub
github.com › espressif › esptool › issues › 843
V4.5 possible regression: "version `GLIBC_2.35' not found" on Debian Bullseye (Stable/11) (ESPTOOL-623) · Issue #843 · espressif/esptool
February 17, 2023 - V4.5 possible regression: "version `GLIBC_2.35' not found" on Debian Bullseye (Stable/11) (ESPTOOL-623)#843
Author   espressif
🌐
Google Groups
groups.google.com › g › linux.debian.bugs.dist › c › Q4SzZe4LTkU
Bug#1062006: bullseye-pu: package glibc/2.31-13+deb11u8
January 30, 2024 - package release.debian.org tags 1062006 = bullseye pending thanks Hi, The upload referenced by this bug report has been flagged for acceptance into the proposed-updates queue for Debian bullseye. Thanks for your contribution! Upload details ============== Package: glibc Version: 2.31-13+deb11u8 ...
🌐
Launchpad
launchpad.net › debian › +source › glibc
glibc package : Debian - Launchpad
GNU C library (glibc) is one of the most important components of GNU Hurd and most modern Linux distributions · Packaging is up-to-date for GLibC 2.42
🌐
GitHub
github.com › CleverRaven › Cataclysm-DDA › issues › 64210
Linux build no longer runs on Debian due to missing glibc versions · Issue #64210 · CleverRaven/Cataclysm-DDA
March 12, 2023 - I run CDDA on a Debian machine - specifically Debian GNU/Linux 11 (bullseye) via crostini on ChromeOS. This has worked seamlessly until now (just untar the Linux build and you're good to go).
Author   CleverRaven