LoginSignup
0
1

More than 3 years have passed since last update.

CentOS 8.3 to Rocky Linux 8.3

Posted at

Rocky Linuxを使用する場合は、Centos 8.3にアップグレードする必要があります。

実稼働環境で直接試さないでください。

x86_64のみをサポートします。

# rootユーザーに変更してください。
rpm -e --nodeps centos-linux-release
rpm -e --nodeps centos-linux-repos

cat > /etc/yum.repos.d/Rocky-BaseOS.repo <<-EOF
# Rocky-BaseOS.repo
#
# The mirrorlist system uses the connecting IP address of the client and the
# update status of each mirror to pick current mirrors that are geographically
# close to the client.  You should use this for Rocky updates unless you are
# manually picking other mirrors.
#
# If the mirrorlist does not work for you, you can try the commented out
# baseurl line instead.

[baseos]
name=Rocky Linux $releasever - BaseOS
baseurl=http://dl.rockylinux.org/pub/rocky/8.3/BaseOS/x86_64/os/
gpgcheck=0
enabled=1
EOF

dnf install rocky-repos
dnf update

# システムバージョンを確認する
cat /etc/system-release
# Rocky Linux release 8.3

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