CentOS 8 から CentOS Stream 8 への切り替えの手順を紹介します。
コマンド3行で切り替えが可能です。
変更前の状態(CentOS8)を確認
1 2 3 |
[root@cent8 ~]# cat /etc/centos-release CentOS Linux release 8.3.2011 [root@cent8 ~]# |
変更コマンド
下記を順番に実行するこでお変更されます。Yes/Noの問い合わせがありますので、yを入力して各処理を実行して下さい。
1 2 3 |
dnf install centos-release-stream dnf swap centos-{linux,stream}-repos dnf distro-sync |
処理が実行すると再起動を実行します。
1 |
reboot |
変更完了の確認
再起動を完了するとコンソールで CentOS Stream 8 の表示がされます。 /etc/redhat-release で現在のOSを確認することができます。
1 2 3 4 5 6 7 8 9 |
CentOS Stream 8 Kernel 4.18.0-277.el8.x86_64 on an x86_64 cent8 login: root パスワード: 前回のログイン: Sun Feb 14 23:29:28 端末: ttyS0 [root@cent8 ~]# cat /etc/redhat-release CentOS Stream release 8 [root@cent8 ~]# |