GithubHelp home page GithubHelp logo

00mjk / amazon-linux-2022 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from amazonlinux/amazon-linux-2023

0.0 0.0 0.0 1.4 MB

Amazon Linux 2022

License: Other

XSLT 0.10% CSS 0.02% Makefile 0.03% HTML 99.85%

amazon-linux-2022's Introduction

Amazon Linux 2022 - Release Candidate

Welcome to Amazon Linux 2022!

Amazon Linux 2022 is the next generation of Amazon Linux from Amazon Web Services (AWS). It provides a stable, and high-performance execution environment to develop and run cloud applications. With Amazon Linux 2022 (AL2022), you get an application environment that offers long term support with access to the latest innovations in Linux. Using Fedora as the upstream, AL2022 is a stable distribution that has gone through extensive testing to offer package stability and is maintained and managed with all necessary security updates. Amazon Linux 2022 is provided at no additional charge.

The first Release Candidate of AL2022 is now available for testing. A release candidate is a GA-like distribution (the feature set is frozen, and no major changes are expected between the Release Candidate and the Generally Available version) that will only receive patches and bug fixes leading to the AL2022 Generally Available release, with very few other changes. A Release Candidate AL2022 AMI will contain a date equal to or later than 20220728 within its name. For example, al2022-ami-2022.0.20220728.0-kernel-5.15-x86_64 is a Release Candidate AMI, while al2022-ami-2022.0.20220419.0-kernel-5.15-x86_64 is not.

The Release Candidate is not recommended for production workloads and is intended only for testing purposes and to help you prepare for migration to Amazon Linux 2022.

Quick links

Contact Us

If you find a security issue, contact our security team rather than opening an issue.

We use GitHub issues to gather feedback about Amazon Linux 2022 and to track bug reports and feature requests. You can look at existing issues to see whether your concern is already known. If it is not, you can open a new issue.

If you just have questions about Amazon Linux 2022, you can start or join a discussion. Feedback on Amazon Linux 2022 can also be provided through your designated AWS representative or AWS re:Post.

Architectures

Our supported architectures include x86_64 and aarch64 (written as arm64 in some contexts). Amazon Linux 2022 does not ship any i686 packages for runtime compatibility with 32bit x86 code.

Note: Amazon Linux 2022 does not support A1 instances. Only instances based on Graviton2 and later generation processors are supported.

Upcoming changes

The first Release Candidate of AL2022 is now available for testing. Now is the ideal time to validate your services and solutions on AL2022. We are actively seeking your feedback about what to add to and modify in Amazon Linux 2022. We also have a clear roadmap moving forward. If you would like to request a feature, let us know by submitting a request.

Benefits of Amazon Linux 2022

Optimized for AWS: Amazon Linux 2022 is optimized for Amazon EC2, comes well integrated with latest AWS features, and offers an integrated experience with many of AWS-specific tools.

Flexible and consistent update experience: Based on Fedora, AL2022 provides frequent and flexible quarterly updates. AL2022 also locks to a specific version of the Amazon Linux package repository, giving you control over how and when you absorb updates.

Easy to plan and manage operating system lifecycle: New Amazon Linux major versions will be available every two years and each major version, including AL2022, will come with five years of long term support.

High security standard: Major applications within AL2022 come with pre-configured SELinux policies to help you meet your compliance needs. AL2022 also allows you to set security policies at boot time.

Notable features of Amazon Linux 2022

Predictable two-year major release cycle and long-term support: Starting with AL2022, a new major version of Amazon Linux releases every two years and comes with five years of long-term support, with each release consisting of standard support (2 years), and maintenance (3 years). This support commitment gives customers the stability they need to manage long project lifecycles.

Frequent and flexible updates: During the standard support phase (2 years), the release receives quarterly minor version updates to provide customers with security updates, bug fixes, and new features. Based on Fedora, this also gives customers access to a wide variety of modern software packages.

Improved security posture: AL2022 includes pre-configured security policies that make it easy for customers to implement common industry guidelines. These policies can be configured at launch time or run time, including setting the system crypto policy to FUTURE or LEGACY, locking down SELinux, and setting SELinux to enforcing or permissive mode.

Repository locking: Amazon Linux 2022 gives customers control over how and when they choose updates and provides the ability to lock major and minor versions as well as specific versions of your Amazon Linux repository. This enables you to ensure consistency of package versions and updates across your environment.

Kernel hardening: Many hardening features are enabled by default. This includes secure-boot related features such as kernel module signing, and making the kernel lockdown feature available.

Kernel Live Patching: Amazon Linux 2022 includes kernel live patching functionality. This enables you to patch critical and important security vulnerabilities in the Linux kernel without reboot or downtime. [Not available until AL2022 GA]

How to get started

Launching Amazon Linux 2022 via EC2 Management Console

To launch an Amazon Linux 2022 instance from the EC2 Management Console, navigate to EC2 Dashboard โ€”> Images โ€”> AMIs, then select Public images, and use the search term "al2022-ami". Make sure that amazon is listed in the Owner alias column. Select the image from the list, click on the Launch instance from image button and follow the instructions.

Launching latest Amazon Linux 2022 AMI via CloudFormation

To launch the latest Amazon Linux 2022 AMI using CloudFormation, you can use the following template:

Parameters:
  LatestAmiId:
    Type: 'AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>'
    Default: '/aws/service/ami-amazon-linux-latest/al2022-ami-kernel-5.15-arm64'

Resources:
 Instance:
    Type: 'AWS::EC2::Instance'
    Properties:
      ImageId: !Ref LatestAmiId

Make sure to replace the AMI alias section if needed. The following aliases are available:

  • al2022-ami-kernel-5.15-arm64 for arm64 architecture
  • al2022-ami-minimal-kernel-5.15-arm64 for arm64 architecture (minimal AMI)
  • al2022-ami-kernel-5.15-x86_64 for x86_64 architecture
  • al2022-ami-minimal-kernel-5.15-x86_64 for x86_64 architecture (minimal AMI)

Launching Amazon Linux 2022 using specific AMI ID

You can launch specific Amazon Linux 2022 AMI using its AMI ID. You can determine the needed Amazon Linux 2022 AMI ID by looking at the AMI list in the EC2 Management Console or by using SSM. If you are using SSM, please refer to this article for details and make sure to indicate the AMI aliases from the section above.

Using the Amazon Linux container image

The Amazon Linux container image is built from the same software components that are included in the Amazon Linux AMI. It's available for use in any environment as a base image for Docker workloads. If you're using the Amazon Linux AMI for applications in Amazon Elastic Compute Cloud (Amazon EC2), you can containerize your applications with the Amazon Linux container image.

Use the Amazon Linux container image in your local development environment and then push your application to AWS using Amazon Elastic Container Service (Amazon ECS). For more information, see Using Amazon ECR images with Amazon ECS in the Amazon Elastic Container Registry User Guide.

The Amazon Linux container image is available on Amazon ECR Public. Support for the Amazon Linux container image can be found by visiting the AWS developer forums.

To pull the Amazon Linux container image from Amazon ECR Public

  1. Authenticate your Docker client to the Amazon Linux Public registry. Authentication tokens are valid for 12 hours. For more information, see Private registry authentication in the Amazon Elastic Container Registry User Guide. Note
    The get-login-password command is supported using the latest version of AWS CLI version 2. For more information, see Installing the AWS Command Line Interface in the AWS Command Line Interface User Guide.

    $ aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws
    

    The output is as follows:

    Login succeeded
    
  2. Pull the Amazon Linux container image using the docker pull command. To view the Amazon Linux container image on the Amazon ECR Public Gallery, see Amazon ECR Public Gallery - amazonlinux. Note
    To get the latest version of the container image of Amazon Linux 2022, use the tag :2022. To get a specific version of the container image, you need to use the tag listed in the Amazon ECR Public Gallery -amazonlinux, for example :2022.0.20211222.0. The following examples use the tag :2022 and pull the most recent available container image of Amazon Linux 2022.

    # docker pull public.ecr.aws/amazonlinux/amazonlinux:2022
    
  3. (Optional) Run the container locally.

    # docker run -it public.ecr.aws/amazonlinux/amazonlinux:2022 /bin/bash
    

    Note If seccomp is enabled, you might get an EPERM error when using Amazon Linux container images. To run a container without the default seccomp profile, add the following option to the docker command.

    --security-opt seccomp=unconfined
    

    This is the updated command.

    docker run -it --security-opt seccomp=unconfined public.ecr.aws/amazonlinux/amazonlinux:2022 /bin/bash
    

To pull the Amazon Linux container image from Docker Hub

  1. Pull the Amazon Linux container image using the docker pull command.

    # docker pull amazonlinux:2022
    
  2. (Optional) Run the container locally.

    # docker run -it amazonlinux:2022 /bin/bash
    

amazon-linux-2022's People

Contributors

dmitmasy avatar glendonh-aws avatar poorvinarang avatar nikhildikshit avatar stewartsmith avatar kemotaha avatar njacklin1988 avatar liesenml avatar amazon-auto avatar zacthompson avatar thimslugga avatar lavoiml avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.