3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Linux】AlmaLinuxのバージョンを固定してアップデートする

Last updated at Posted at 2024-07-11

目次

1. はじめに
2. 環境
3. アップデート手順

1. はじめに

AlmaLinuxのバージョンを固定してアップデートする方法をよく忘れるので備忘がてら記事に残しておく。

2. 環境

  • AlmaLinux:8

3. アップデート手順

3.1. 現行バージョンの確認
# cat /etc/almalinux-release
AlmaLinux release 8.x
3.2. アップデート除外設定の解除
# cat /etc/dnf/dnf.conf
exclude=kernel* almalinux-release*  ←除外設定があったらコメントアウトしておく
3.3. パッケージ最適化(キャッシュを削除して新しく作り直す)
# dnf clean all
# dnf makecache
3.4. リリースパッケージ確認とインストール
# dnf list almalinux-release
almalinux-release.x86_64     8.10-1.el8  

# dnf install almalinux-release
3.5. バージョンを固定してアップデート(システムリリースに同期させる)
# dnf upgrade --releasever=8.8 distro-sync
3.6. アップデート後のバージョン確認
# cat /etc/almalinux-release
AlmaLinux release 8.8 
3.7. アップデート後の再起動
# reboot
3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?