🌐
AWS
docs.aws.amazon.com › amazon linux › user guide › what is amazon linux 2023? › release cadence
Release cadence - Amazon Linux 2023
May 22, 2026 - Learn about the Amazon Linux 2023 release cadence, support phases, and update mechanisms. Understand major and minor version releases, long-term support policy, and how to consume new releases.
🌐
AWS
docs.aws.amazon.com › amazon linux › release notes › amazon linux 2023 release notes
Amazon Linux 2023 release notes - Amazon Linux 2023
Amazon Linux 2023 release notes, which provide information about new features, updates, and fixes.
Discussions

How to find Amazon Linux 2023 version? - Stack Overflow
Amazon Linux 2023 repository 361 B/s | 3.6 kB 00:10 ==================================================================================================== WARNING: A newer release of "Amazon Linux" is available. More on stackoverflow.com
🌐 stackoverflow.com
where are the release notes for Amazon Linux 2023.6.20241121?
The release notes for Amazon Linux ... about (2023.6.20241121) is not yet available in the sources I have access to. If the update servers already have this update as you mentioned, it's possible that the official documentation hasn't been updated yet to reflect this latest release. In such cases, it's best to check the official Amazon Linux documentation or AWS announcements for the most up-to-date ... More on repost.aws
🌐 repost.aws
3
0
November 25, 2024
Amazon Linux 2023 Officially Released
By default, any instances launched with the AL2023 AMI will require the use of IMDSv2-only The amount of users who are about to be shocked that curl http://169.254.169.254/latest/meta-data/ no longer works will be numerous. More on reddit.com
🌐 r/aws
90
246
March 15, 2023
Amazon Linux 2025
They said a new version would be ... and AWS Linux 2023 was released two years ago. I'd think there would be a lot of info and discussions on this but I cannot find a single reference to it. Maybe I misunderstood and there will just be a major release of AL2023 in 2025, but there is an end of support date for AL2023 so that seems confusing. Also I can't find any info on that major update if that is the case. ... As a former employee of Amazon Linux, there ... More on reddit.com
🌐 r/aws
46
68
March 25, 2025
People also ask

Simplify upgrade processes

Ensure deterministic behavior and streamline integrating OS updates into frequent integration and deployment environments.

🌐
aws.amazon.com
aws.amazon.com › home › compute › linux
Amazon Linux 2023
Improve consistency with version locking

Consistently apply updates across all your instances by locking them to a specific repository version.

🌐
aws.amazon.com
aws.amazon.com › home › compute › linux
Amazon Linux 2023
Enhance your security posture

Set the system crypto policy to FUTURE or LEGACY, lock down SELinux, and set SELinux to enforcing or permissive mode.

🌐
aws.amazon.com
aws.amazon.com › home › compute › linux
Amazon Linux 2023
🌐
End of Life Date
endoflife.date › amazon-linux
Amazon Linux | endoflife.date
5 days ago - It was announced as Amazon Linux 2022 and renamed to Amazon Linux 2023. ↩ · More information is available on the Amazon Linux website. You should be running one of the supported release numbers listed above in the rightmost column.
🌐
GitHub
github.com › amazonlinux › amazon-linux-2023
GitHub - amazonlinux/amazon-linux-2023: Amazon Linux 2023 · GitHub
Amazon Linux 2023 was released to general availability in all AWS regions on March 15, 2023.
Starred by 616 users
Forked by 48 users
Languages   HTML
🌐
InvGate
invgate.com › itdb › amazon-linux-2023
Amazon Linux 2023 | Specs, reviews and EoL info
Released in March 2023, it offers a predictable lifecycle with five years of long-term support, comprising a two-year standard support phase and a three-year maintenance phase, extending until June 30, 2029.
🌐
AWS
aws.amazon.com › blogs › aws › amazon-linux-2023-a-cloud-optimized-linux-distribution-with-long-term-support
Amazon Linux 2023, a Cloud-Optimized Linux Distribution with Long-Term Support | Amazon Web Services
November 17, 2025 - 11/17/2025 Update: Amazon Linux 2 end of support date (End of Life, or EOL) has been extended to 2026-06-30. I am excited to announce the general availability of Amazon Linux 2023 (AL2023). AWS has provided you with a cloud-optimized Linux distribution since 2010.
Find elsewhere
🌐
Amazon Web Services
aws.amazon.com › home › compute › linux
Amazon Linux 2023
1 week ago - Amazon Linux 2023 provides a security-focused, stable, high-performance operating system to develop and run cloud applications.
🌐
Medium
medium.com › develeap › amazon-linux-2023-review-d4a54e95961c
Amazon Linux 2023 review | by Ro'i Bandel | Develeap
March 22, 2023 - Starting with Amazon Linux 2023, Amazon plans to release a new major version every two years. Two years from now we can expect to see Amazon Linux 2025, then Amazon Linux 2027 and 2029.
Top answer
1 of 2
4

From the Amazon Linux 2023 documentation:

You can change the value of releasever using one of the following methods. These methods are listed in descending system priority. This means that method 1 overrides methods 2 and 3, and method 2 overrides method 3.

  1. The value in the command line flag, --releasever=latest, if it's used.
  2. The value that's specified in the override variable file, /etc/dnf/vars/releasever, if it's set.
  3. The currently installed version of the system-release package.

So releasever can be found with the one-liner: cat /etc/dnf/vars/releasever || rpm -q system-release

Original answer

Can be found like so: cat /var/log/dnf.log | grep -i "ddebug releasever:" | rev | cut -f 1 -d " " | rev | tail -n 1

To double check run dnf list system-release. The numbers should be identical. The packages amazon-linux-repo-s3 or kernel-livepatch-repo-s3 can be used in place of system-release.

2 of 2
0

I see it in eg:

% cat /etc/amazon-linux-release
Amazon Linux release 2023.5.20240805 (Amazon Linux)

% cat /etc/os-release
NAME="Amazon Linux"
VERSION="2023"
ID="amzn"
ID_LIKE="fedora"
VERSION_ID="2023"
PLATFORM_ID="platform:al2023"
PRETTY_NAME="Amazon Linux 2023.5.20240805"
ANSI_COLOR="0;33"
CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2023"
HOME_URL="https://aws.amazon.com/linux/amazon-linux-2023/"
DOCUMENTATION_URL="https://docs.aws.amazon.com/linux/"
SUPPORT_URL="https://aws.amazon.com/premiumsupport/"
BUG_REPORT_URL="https://github.com/amazonlinux/amazon-linux-2023"
VENDOR_NAME="AWS"
VENDOR_URL="https://aws.amazon.com/"
SUPPORT_END="2028-03-15"

% cat /etc/system-release
Amazon Linux release 2023.5.20240805 (Amazon Linux)

% rpm -q system-release
system-release-2023.5.20240805-0.amzn2023.noarch

% rpm -q system-release --qf "%{VERSION}\n"
2023.5.20240805

% dnf list system-release
Last metadata expiration check: 3:03:53 ago on Fri Nov  7 10:01:06 2025.
Installed Packages
system-release.noarch    2023.5.20240805-0.amzn2023     @amazonlinux
🌐
AWS
aws.amazon.com › about-aws › whats-new › 2023 › 03 › amazon-linux-2023
Announcing Amazon Linux 2023 - AWS
March 15, 2023 - Discover more about what's new at AWS with Announcing Amazon Linux 2023