0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Amazon Linux 2023の更新方法

Last updated at Posted at 2024-12-07

はじめに

プライベートで使っているAmazon Linux 2023の仮想マシンでのOS更新作業を、備忘録として記事にまとめてみました。

新しいOSの通知

  • Amazon Linux 2023がにログインした際に、より新しいバージョンのOSが存在する時は以下のように通知が表示されます。
  • ここで新しいバージョンが一覧表示されますが、これをコピペして更新処理をするのは少々面倒なので、後述する方法で使用可能なバージョンを調べた方が良いと思います。
ログイン時の通知
A newer release of "Amazon Linux" is available.
  Version 2023.5.20240903:
  Version 2023.5.20240916:
  Version 2023.5.20241001:
  Version 2023.6.20241010:
  Version 2023.6.20241028:
  Version 2023.6.20241031:
Run "/usr/bin/dnf check-release-update" for full release and version update info
   ,     #_
   ~\_  ####_        Amazon Linux 2023
  ~~  \_#####\
  ~~     \###|
  ~~       \#/ ___   https://aws.amazon.com/linux/amazon-linux-2023
   ~~       V~' '->
    ~~~         /
      ~~._.   _/
         _/ _/
       _/m/'

使用可能なバージョンを調べる

  • 使用可能なバージョンを調べる際には、sudo dnf check-release-updateを実行します。
  • 更新が溜まっていると以下のようにずらっと表示されますが、AWSの情報によると「新しいバージョンが公開されても、以前のバージョンはすべて引き続き利用可能」とのことです。
    • そのため、セキュリティ上の問題があるなどのケースを除けば、慌てて更新(アップグレード)する必要はないと思います。
  • また、この一覧表示の中に書かれているdnf upgrade --releasever=...という部分をコピペして実行すれば、簡単にOSを更新することが可能です。
使用可能なバージョンを調べる
[ec2-user@ip-10-0-1-23 ~]$ sudo dnf check-release-update
WARNING:
  A newer release of "Amazon Linux" is available.

  Available Versions:

  Version 2023.5.20240903:
    Run the following command to upgrade to 2023.5.20240903:

      dnf upgrade --releasever=2023.5.20240903

    Release notes:
     https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.5.20240903.html

  Version 2023.5.20240916:
    Run the following command to upgrade to 2023.5.20240916:

      dnf upgrade --releasever=2023.5.20240916

    Release notes:
     https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.5.20240916.html

  Version 2023.5.20241001:
    Run the following command to upgrade to 2023.5.20241001:

      dnf upgrade --releasever=2023.5.20241001

    Release notes:
     https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.5.20241001.html

  Version 2023.6.20241010:
    Run the following command to upgrade to 2023.6.20241010:

      dnf upgrade --releasever=2023.6.20241010

    Release notes:
     https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.6.20241010.html

  Version 2023.6.20241028:
    Run the following command to upgrade to 2023.6.20241028:

      dnf upgrade --releasever=2023.6.20241028

    Release notes:
     https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.6.20241028.html

  Version 2023.6.20241031:
    Run the following command to upgrade to 2023.6.20241031:

      dnf upgrade --releasever=2023.6.20241031

    Release notes:
     https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes-2023.6.20241031.html

OSの更新

  • OSの更新をする際には、sudo dnf upgrade --releasever={version}を実行します。
    • sudo dnf check-release-updateで得られたコマンドに、sudoを付けただけです。
  • t3a.nanoでOSを更新すると、1時間半ほどで更新処理が完了しました。
    • OSの更新前後で、CPUクレジットの残高がMAX(144)から41.7まで減っていたので、なるべくCPUクレジットが貯まっている状態で実施した方が良いと思われます。
    • 予算的に余裕があるなら、OS更新の時だけインスタンスサイズをスケールアップさせた方がサッと済ませられて良いかもしれません。
OSの更新
[ec2-user@ip-10-0-1-23 ~]$ sudo dnf upgrade --releasever=2023.6.20241031

注意点

  • 以前に「使用可能なバージョン」が大量にあった時(=しばらく更新していなかった時)に、sudo dnf upgrade --releasever={version}で一気に最新バージョンに更新しようとしたところ、丸1日経ってもOSの更新が終わりませんでした...
    • もしかすると、使っていたEC2インスタンスが超低スペック(t3a.nano)だったのが原因かもしれません。
  • そのため、OS更新の前にAMIを作るなどバックアップをしっかりしておいた方が良いと思います。

参考URL

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?