This does not seem helpful. For example every Lambda image (at the time of this writing ex: NodeJS v16) seems to have a version of glibc v2.2.6 released on 2017-08-02. We need a way to update glibc now? Answer from MetaSkills on repost.aws
🌐
Reddit
reddit.com › r/aws › how to upgrade glibc on amazon linux 2 ami
r/aws on Reddit: How to upgrade glibc on Amazon Linux 2 AMI
March 1, 2022 -

On EC2 instances using Amazon Linux 2, an outdated version of glibc is used: glibc 2.26. That is backed up by the FAQ for Amazon Linux 2. FAQ for Amazon Linux 2.

A set of core packages including systemd, GCC 7.3, Glibc 2.26, Binutils 2.29.1 that receive Long Term Support (LTS) from AWS.

Is there any way to upgrade to a newer version of Glibc, like 2.28? For background, I am trying to run a Python Docker image that is using glibc 2.28 and is running into conflicts since the 2.26 version is being used in the instance.

Discussions

node.js - GLIBC_2.27 not found while installing Node on Amazon EC2 instance - Stack Overflow
If your package manager can't install a new-enough version of glibc, you need to be on a newer version of your operating system. In Ubuntu, you can accomplish an OS upgrade with do-release-upgrade. ... and because the question is about Amazon Linux, if you want to go from Node 16 to Node 18 ... More on stackoverflow.com
🌐 stackoverflow.com
Amazon Linux 2023 AMI update to libstdc++ with GLIBCXX_3.4.30
I'm running an EC2 with `Amazon Linux 2023` on a micro x86. I have a linux binary that requires GLIBCXX_3.4.30 (from libstdc++) but I can't find a way to update the libstdc++ package with GLIBCXX_3... More on repost.aws
🌐 repost.aws
1
1
September 1, 2023
node.js - GLIBC version issue while installing npm on Amazon Linux 2023 - Stack Overflow
I am using Amazon Linux 2023 and trying to update Node from v14 to v18. While running the command nvm install 18.13.0 it's installing the Node properly. However, right after that I tried to run the More on stackoverflow.com
🌐 stackoverflow.com
Building GCC 11.2 on Amazon Linux 2 - Stack Overflow
While attempting to build GCC version 11.3 for Linux-x86_64 (with multilib and multiarch support enabled), I am getting the following error: In file included from /usr/include/features.h:447, ... More on stackoverflow.com
🌐 stackoverflow.com
🌐
Installati.one
installati.one › home › amazonlinux › 2nd › how to install glibc.x86_64 on amazon linux 2
How To Install glibc.x86_64 on Amazon Linux 2 | Installati.one
May 20, 2022 - We can use yum to install glibc.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install glibc.x86_64. Update yum database with yum using the following command.
🌐
LinuxQuestions.org
linuxquestions.org › questions › linux-newbie-8 › glibc-update-to-2-27-in-amazon-linux-4175633861
glibc update to 2.27 in amazon linux
I am trying to update glibc package update in amazon linux AMI, could some please help me how to update the glibc this is regarding to CVE-2017-15804
🌐
Tenable
tenable.com › plugins › nessus › 171823
Amazon Linux 2 : glibc (ALAS-2023-1944)<!-- --> | Tenable®
February 17, 2023 - (CVE-2020-1752) Tenable has extracted the preceding description block directly from the tested product security advisory. Note that Nessus has not tested for these issues but has instead relied only on the application's self-reported version number. Run 'yum update glibc' to update your system. ...
Find elsewhere
🌐
Tenable
tenable.com › plugins › nessus › 186573
Amazon Linux 2 : glibc (ALAS-2023-2371)<!-- --> | Tenable®
Run 'yum update glibc' to update your system. https://alas.aws.amazon.com/AL2/ALAS-2023-2371.html ... Supported Sensors: Frictionless Assessment AWS, Frictionless Assessment Agent, Nessus Agent, Agentless Assessment, Continuous Assessment, Nessus ... CPE: p-cpe:/a:amazon:linux:glibc-langpack-te, ...
🌐
AWS
aws.amazon.com › blogs › developer › linux-support-updates-for-aws-cli-v2
Linux Support Updates for AWS CLI v2 | AWS Developer Tools Blog
August 6, 2025 - Overview Today, Amazon Web Services is announcing the official Linux distribution support policy for the AWS Command Line Interface (AWS CLI) v2. In particular, this policy applies to Linux distributions based on the GNU C Library (glibc): the C standard library implementation by the GNU Project.
🌐
Tenable
tenable.com › plugins › nessus › 150980
Amazon Linux 2 : glibc (ALAS-2021-1656)<!-- --> | Tenable®
June 23, 2021 - Run 'yum update glibc' to update your system. https://alas.aws.amazon.com/AL2/ALAS-2021-1656.html · https://access.redhat.com/security/cve/CVE-2019-9169 · https://access.redhat.com/security/cve/CVE-2020-27618 ... Supported Sensors: Frictionless Assessment AWS, Frictionless Assessment Agent, ...
🌐
AWS re:Post
repost.aws › questions › QUZgn4fP5YRYe9kO3DZFTgLQ › amazon-linux-2023-ami-update-to-libstdc-with-glibcxx-3-4-30
Amazon Linux 2023 AMI update to libstdc++ with GLIBCXX_3.4.30 | AWS re:Post
September 1, 2023 - It looks like this symbol version was added in GCC12, while Amazon Linux 2023 contains GCC11.x. This problem will be avoided if the binary you are running is built on AL2023. You can see the Core toolchain packages and C, C++, and Fortran sections of the AL2023 User Guide for more information. ... Migrating an EC2 Amazon Machine Image (AMI) from Amazon Linux 2 to the latest Amazon Linux version 2023
🌐
Stack Overflow
stackoverflow.com › questions › 79041854 › glibc-version-issue-while-installing-npm-on-amazon-linux-2023
node.js - GLIBC version issue while installing npm on Amazon Linux 2023 - Stack Overflow
When I tried to check the current version of GLIBC on my Linux (ldd --version) it said 2.34. I'm utterly clueless at this point and need help! ... Not an exact duplicate, but basically the same issue - stackoverflow.com/q/72022527/2422776. Long story short, you either need a newer Linux version or an older Node.js version. ... @Mureinik I already have the latest version of Linux (Amazon Linux 2023) which should support up to Node v20 as per this document - docs.aws.amazon.com/lambda/latest/dg/… Also it shows the available GLIBC version on my Linux is 2.34.
🌐
Stack Overflow
stackoverflow.com › questions › 72295961 › building-gcc-11-2-on-amazon-linux-2
Building GCC 11.2 on Amazon Linux 2 - Stack Overflow
Maybe you are using centos so you need to go to chrome and search for "How to install glibc-devel.i686 for centos".
🌐
Tenable
tenable.com › plugins › nessus › 167239
Amazon Linux 2 : glibc (ALAS-2022-1869)<!-- --> | Tenable®
November 9, 2022 - Run 'yum update glibc' to update your system. https://alas.aws.amazon.com/AL2/ALAS-2022-1869.html · https://alas.aws.amazon.com/cve/html/CVE-2009-5155.html · https://alas.aws.amazon.com/cve/html/CVE-2015-8985.html ... Supported Sensors: Frictionless Assessment AWS, Frictionless Assessment ...
🌐
Reddit
reddit.com › r/aws › al2023 does not have glibc 2.38?
r/aws on Reddit: al2023 does not have glibc 2.38?
May 21, 2025 -

I’m trying to deploy a .NET 9 AOT lambda on provided.al2023. I see a runtime exception that shows the bootstrapper cannot find glibc 2.38.

I’m building the app through GitHub actions using Ubuntu 24.04.

Anybody knows how to get around this issue?

🌐
Amazon Web Services
aws.amazon.com › compute › amazon linux 2 › faqs
Amazon Linux 2 FAQs
2 weeks ago - A Linux kernel tuned for performance on Amazon EC2. A set of core packages including systemd, GCC 7.3, Glibc 2.26, Binutils 2.29.1 that receive Long Term Support (LTS) from AWS.