CentOS8からOracle Linux 8への移行2(成功例/非公式手順/EFI環境用

CentOS8からOracle Linux 8への移行(成功例/非公式手順/EFI環境用」として公開したが、いろいろ資料をあたってみると、もうちょっと手順を簡略化できることが分かったので修正版を公開。

(1) CentOS8を用意

CentOS8の最新版を最小インストールで用意した。

1[root@centos8 ~]# uname -a
2Linux centos8 4.18.0-240.1.1.el8_3.x86_64 #1 SMP Thu Nov 19 17:20:08 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
3[root@centos8 ~]# dnf list --installed *release*
4インストール済みパッケージ
5centos-linux-release.noarch               8.3-1.2011.el8               @anaconda
6[root@centos8 ~]#

現状の /etc/yum.repos.d/ の中身は下記の状態。

1[root@centos8 ~]# ls -l /etc/yum.repos.d/
2合計 48
3-rw-r--r--. 1 root root  719 11月 10 09:32 CentOS-Linux-AppStream.repo
4-rw-r--r--. 1 root root  704 11月 10 09:32 CentOS-Linux-BaseOS.repo
5-rw-r--r--. 1 root root 1130 11月 10 09:32 CentOS-Linux-ContinuousRelease.repo
6-rw-r--r--. 1 root root  318 11月 10 09:32 CentOS-Linux-Debuginfo.repo
7-rw-r--r--. 1 root root  732 11月 10 09:32 CentOS-Linux-Devel.repo
8-rw-r--r--. 1 root root  704 11月 10 09:32 CentOS-Linux-Extras.repo
9-rw-r--r--. 1 root root  719 11月 10 09:32 CentOS-Linux-FastTrack.repo
10-rw-r--r--. 1 root root  740 11月 10 09:32 CentOS-Linux-HighAvailability.repo
11-rw-r--r--. 1 root root  693 11月 10 09:32 CentOS-Linux-Media.repo
12-rw-r--r--. 1 root root  706 11月 10 09:32 CentOS-Linux-Plus.repo
13-rw-r--r--. 1 root root  724 11月 10 09:32 CentOS-Linux-PowerTools.repo
14-rw-r--r--. 1 root root  898 11月 10 09:32 CentOS-Linux-Sources.repo
15[root@centos8 ~]#

(2) gpgファイルの登録

Oracleサイト上のGPGキーをダウンロードする。

1[root@centos8 ~]# curl -o /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle https://yum.oracle.com/RPM-GPG-KEY-oracle-ol8
2  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
3                                 Dload  Upload   Total   Spent    Left  Speed
4100  3169  100  3169    0     0   3015      0  0:00:01  0:00:01 --:--:--  3015
5[root@centos8 ~]# ls -l /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
6-rw-r--r--. 1 root root 3169 12月 11 15:23 /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
7[root@centos8 ~]#

そして、gpgを登録

1[root@centos8 ~]# gpg --import --import-options show-only /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
2gpg: ディレクトリ'/root/.gnupg'が作成されました
3gpg: keybox'/root/.gnupg/pubring.kbx'が作成されました
4pub   rsa4096 2019-04-09 [SC] [有効期限: 2039-04-04]
5      76FD3DB13AB67410B89DB10E82562EA9AD986DA3
6uid                      Oracle OSS group (Open Source Software group) <build@oss.oracle.com>
7sub   rsa4096 2019-04-09 [E] [有効期限: 2039-04-04]
8 
9[root@centos8 ~]#

(3) Oracle Linuxのリリースパッケージをインストールする

dnfコマンドだと競合を無視してインストールがうまく実行できなかったので、ここではrpmコマンドを使ってインストールする。

まずは、BaseOS Latestのパッケージ一覧ページからoraclelinux-release-8.3-1.0.4.el8.x86_64.rpm とredhat-release-8.3-1.0.0.1.el8.x86_64.rpm と、レポジトリ情報が含まれる oraclelinux-release-el8-1.0-14.el8.x86_64.rpm をダウンロードしてくる。

2  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
3                                 Dload  Upload   Total   Spent    Left  Speed
4100 73212  100 73212    0     0   247k      0 --:--:-- --:--:-- --:--:--  247k
6  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
7                                 Dload  Upload   Total   Spent    Left  Speed
8100 17540  100 17540    0     0   219k      0 --:--:-- --:--:-- --:--:--  219k
10  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
11                                 Dload  Upload   Total   Spent    Left  Speed
12100 17940  100 17940    0     0   278k      0 --:--:-- --:--:-- --:--:--  278k
13[root@centos8 ~]# ls -l *release*
14-rw-r--r--. 1 root root 73212 12月 11 15:24 oraclelinux-release-8.3-1.0.4.el8.x86_64.rpm
15-rw-r--r--. 1 root root 17940 12月 11 15:25 oraclelinux-release-el8-1.0-14.el8.x86_64.rpm
16-rw-r--r--. 1 root root 17540 12月 11 15:25 redhat-release-8.3-1.0.0.1.el8.x86_64.rpm
17[root@centos8 ~]#

強制インストールを行う

1[root@centos8 ~]# rpm -Uvh --force oraclelinux-release-8.3-1.0.4.el8.x86_64.rpm oraclelinux-release-el8-1.0-14.el8.x86_64.rpm redhat-release-8.3-1.0.0.1.el8.x86_64.rpm
2警告: oraclelinux-release-8.3-1.0.4.el8.x86_64.rpm: ヘッダー V3 RSA/SHA256 Signature、鍵 ID ad986da3: NOKEY
3Verifying...                          ################################# [100%]
4準備しています...              ################################# [100%]
5更新中 / インストール中...
6   1:redhat-release-2:8.3-1.0.0.1.el8 ################################# [ 33%]
7   2:oraclelinux-release-8:8.3-1.0.4.e################################# [ 67%]
8   3:oraclelinux-release-el8-1.0-14.el################################# [100%]
9[root@centos8 ~]#

現在インストールされているrelease関連パッケージを確認すると、centos-linux-releaseとかが残っている。

1[root@centos8 ~]# rpm -qa|grep release
2redhat-release-8.3-1.0.0.1.el8.x86_64
3oraclelinux-release-el8-1.0-14.el8.x86_64
4centos-linux-release-8.3-1.2011.el8.noarch
5oraclelinux-release-8.3-1.0.4.el8.x86_64
6[root@centos8 ~]#

(4) CentOSの不要パッケージを削除

centos-linux-release と centos-linux-repos が不要となるので削除する。

いまインストールされているcentosとつくパッケージを確認する。

1[root@centos8 ~]# dnf list --installed centos*
2インストール済みパッケージ
3centos-gpg-keys.noarch                    1:8-2.el8                    @anaconda
4centos-linux-release.noarch               8.3-1.2011.el8               @anaconda
5centos-linux-repos.noarch                 8-2.el8                      @anaconda
6[root@centos8 ~]#

これらを削除する。

1[root@centos8 ~]# dnf remove centos-linux-release centos-linux-repos
2依存関係が解決しました。
3================================================================================
4 パッケージ                Arch        バージョン          リポジトリー   サイズ
5================================================================================
6削除中:
7 centos-linux-release      noarch      8.3-1.2011.el8      @anaconda       25 k
8 centos-linux-repos        noarch      8-2.el8             @anaconda       26 k
9未使用の依存関係の削除:
10 centos-gpg-keys           noarch      1:8-2.el8           @anaconda      3.3 k
11 
12トランザクションの概要
13================================================================================
14削除  3 パッケージ
15 
16解放された容量: 54 k
17これでよろしいですか? [y/N]: y
18トランザクションの確認を実行中
19トランザクションの確認に成功しました。
20トランザクションのテストを実行中
21トランザクションのテストに成功しました。
22トランザクションを実行中
23  準備             :                                                        1/1
24  scriptletの実行中: centos-linux-release-8.3-1.2011.el8.noarch             1/1
25  削除             : centos-linux-release-8.3-1.2011.el8.noarch             1/3
26  削除             : centos-linux-repos-8-2.el8.noarch                      2/3
27  削除             : centos-gpg-keys-1:8-2.el8.noarch                       3/3
28  scriptletの実行中: centos-gpg-keys-1:8-2.el8.noarch                       3/3
29  検証             : centos-gpg-keys-1:8-2.el8.noarch                       1/3
30  検証             : centos-linux-release-8.3-1.2011.el8.noarch             2/3
31  検証             : centos-linux-repos-8-2.el8.noarch                      3/3
32 
33削除しました:
34  centos-gpg-keys-1:8-2.el8.noarch   centos-linux-release-8.3-1.2011.el8.noarch
35  centos-linux-repos-8-2.el8.noarch
36 
37完了しました!
38[root@centos8 ~]# dnf list --installed centos*
39エラー: 表示するための一致したパッケージはありません
40[root@centos8 ~]# rpm -qa|grep centos
41[root@centos8 ~]#

(5) インストールされているパッケージを入れ替える

「dnf distro-sync」を実行し、CentOSのパッケージでインストールしたファイルを全てOracle Linuxのパッケージでインストールしたファイルに置き換える。

これにより、/boot/efi/EFI/ ディレクトリ以下にあるCentOS由来ファイルも置き換えることができる。

現在のレポジトリ設定を確認する。

1[root@centos8 ~]# dnf repolist
2repo id           repo の名前
3ol8_UEKR6         Latest Unbreakable Enterprise Kernel Release 6 for Oracle Linux 8 (x86_64)
4ol8_appstream     Oracle Linux 8 Application Stream (x86_64)
5ol8_baseos_latest Oracle Linux 8 BaseOS Latest (x86_64)
6[root@centos8 ~]#

「dnf disto-sync」コマンドを実行して入れ替える。

1[root@centos8 ~]# dnf distro-sync
2Oracle Linux 8 BaseOS Latest (x86_64)            17 MB/s |  27 MB     00:01
3Oracle Linux 8 Application Stream (x86_64)       13 MB/s |  21 MB     00:01
4Latest Unbreakable Enterprise Kernel Release 6   11 MB/s |  11 MB     00:00
5メタデータの期限切れの最終確認: 0:00:04 時間前の 2020年12月11日 15時31分38秒 に 実施しました。
6依存関係が解決しました。
7================================================================================
8 パッケージ           Arch   バージョン                 リポジトリー      サイズ
9================================================================================
10アップグレード:
11 NetworkManager       x86_64 1:1.26.0-9.0.2.el8_3       ol8_baseos_latest 2.4 M
12 NetworkManager-libnm x86_64 1:1.26.0-9.0.2.el8_3       ol8_baseos_latest 1.8 M
13 NetworkManager-team  x86_64 1:1.26.0-9.0.2.el8_3       ol8_baseos_latest 142 k
14 NetworkManager-tui   x86_64 1:1.26.0-9.0.2.el8_3       ol8_baseos_latest 320 k
15 chrony               x86_64 3.5-1.0.1.el8              ol8_baseos_latest 271 k
16 coreutils            x86_64 8.30-8.0.1.el8             ol8_baseos_latest 1.2 M
17 coreutils-common     x86_64 8.30-8.0.1.el8             ol8_baseos_latest 2.0 M
18 dbus                 x86_64 1:1.12.8-11.0.1.el8        ol8_baseos_latest  41 k
19 dbus-common          noarch 1:1.12.8-11.0.1.el8        ol8_baseos_latest  45 k
20 dbus-daemon          x86_64 1:1.12.8-11.0.1.el8        ol8_baseos_latest 240 k
21 dbus-libs            x86_64 1:1.12.8-11.0.1.el8        ol8_baseos_latest 183 k
22 dbus-tools           x86_64 1:1.12.8-11.0.1.el8        ol8_baseos_latest  85 k
23 dbxtool              x86_64 8-5.0.1.el8                ol8_baseos_latest  41 k
24 dracut               x86_64 049-95.git20200804.0.2.el8 ol8_baseos_latest 369 k
25 dracut-config-rescue x86_64 049-95.git20200804.0.2.el8 ol8_baseos_latest  57 k
26 dracut-network       x86_64 049-95.git20200804.0.2.el8 ol8_baseos_latest 105 k
27 dracut-squash        x86_64 049-95.git20200804.0.2.el8 ol8_baseos_latest  58 k
28 efi-filesystem       noarch 3-2.0.2.el8                ol8_baseos_latest 9.0 k
29 efibootmgr           x86_64 16-1.0.1.el8               ol8_baseos_latest  47 k
30 firewalld            noarch 0.8.2-2.0.1.el8            ol8_baseos_latest 487 k
31 firewalld-filesystem noarch 0.8.2-2.0.1.el8            ol8_baseos_latest  76 k
32 fuse                 x86_64 2.9.7-12.0.2.el8           ol8_baseos_latest  84 k
33 fuse-common          x86_64 3.2.1-12.0.2.el8           ol8_baseos_latest  22 k
34 fuse-libs            x86_64 2.9.7-12.0.2.el8           ol8_baseos_latest 104 k
35 glibc                x86_64 2.28-127.0.1.el8           ol8_baseos_latest 3.6 M
36 glibc-common         x86_64 2.28-127.0.1.el8           ol8_baseos_latest 1.3 M
37 glibc-langpack-ja    x86_64 2.28-127.0.1.el8           ol8_baseos_latest 330 k
38 grub2-common         noarch 1:2.02-90.0.1.el8          ol8_baseos_latest 885 k
39 grub2-efi-x64        x86_64 1:2.02-90.0.1.el8          ol8_baseos_latest 409 k
40 grub2-tools          x86_64 1:2.02-90.0.1.el8          ol8_baseos_latest 2.0 M
41 grub2-tools-extra    x86_64 1:2.02-90.0.1.el8          ol8_baseos_latest 1.1 M
42 grub2-tools-minimal  x86_64 1:2.02-90.0.1.el8          ol8_baseos_latest 205 k
43 grubby               x86_64 8.40-41.0.1.el8            ol8_baseos_latest  50 k
44 iproute              x86_64 5.4.0-1.0.1.el8            ol8_UEKR6         665 k
45 iptables             x86_64 1.8.4-15.0.1.el8           ol8_baseos_latest 583 k
46 iptables-ebtables    x86_64 1.8.4-15.0.1.el8           ol8_baseos_latest  71 k
47 iptables-libs        x86_64 1.8.4-15.0.1.el8           ol8_baseos_latest 106 k
48 iwl100-firmware      noarch 999:39.31.5.1-999.5.el8    ol8_baseos_latest 151 k
49 iwl1000-firmware     noarch 999:39.31.5.1-999.5.el8    ol8_baseos_latest 215 k
50 iwl105-firmware      noarch 999:18.168.6.1-999.5.el8   ol8_baseos_latest 236 k
51 iwl135-firmware      noarch 999:18.168.6.1-999.5.el8   ol8_baseos_latest 245 k
52 iwl2000-firmware     noarch 999:18.168.6.1-999.5.el8   ol8_baseos_latest 238 k
53 iwl2030-firmware     noarch 999:18.168.6.1-999.5.el8   ol8_baseos_latest 247 k
54 iwl3160-firmware     noarch 999:25.30.13.0-999.5.el8   ol8_baseos_latest 1.6 M
55 iwl5000-firmware     noarch 999:8.83.5.1_1-999.5.el8   ol8_baseos_latest 295 k
56 iwl5150-firmware     noarch 999:8.24.2.2-999.5.el8     ol8_baseos_latest 148 k
57 iwl6000-firmware     noarch 999:9.221.4.1-999.5.el8    ol8_baseos_latest 168 k
58 iwl6000g2a-firmware  noarch 999:18.168.6.1-999.5.el8   ol8_baseos_latest 311 k
59 iwl6050-firmware     noarch 999:41.28.5.1-999.5.el8    ol8_baseos_latest 244 k
60 iwl7260-firmware     noarch 999:25.30.13.0-999.5.el8   ol8_baseos_latest  15 M
61 kexec-tools          x86_64 2.0.20-34.0.2.el8          ol8_baseos_latest 498 k
62 kmod                 x86_64 25-16.0.1.el8              ol8_baseos_latest 128 k
63 kmod-libs            x86_64 25-16.0.1.el8              ol8_baseos_latest  70 k
64 libdnf               x86_64 0.48.0-5.0.2.el8           ol8_baseos_latest 650 k
65 libgcc               x86_64 8.3.1-5.1.0.1.el8          ol8_baseos_latest  85 k
66 libgomp              x86_64 8.3.1-5.1.0.1.el8          ol8_baseos_latest 211 k
67 libkcapi             x86_64 1.2.0-2.0.1.el8            ol8_baseos_latest  48 k
68 libkcapi-hmaccalc    x86_64 1.2.0-2.0.1.el8            ol8_baseos_latest  31 k
69 libreport-filesystem x86_64 2.9.5-15.0.1.el8           ol8_baseos_latest  22 k
70 libsss_autofs        x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 108 k
71 libsss_certmap       x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 141 k
72 libsss_idmap         x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 111 k
73 libsss_nss_idmap     x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 118 k
74 libsss_sudo          x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 107 k
75 libstdc++            x86_64 8.3.1-5.1.0.1.el8          ol8_baseos_latest 458 k
76 libxml2              x86_64 2.9.7-8.0.1.el8            ol8_baseos_latest 696 k
77 libxslt              x86_64 1.1.32-5.0.1.el8           ol8_baseos_latest 250 k
78 libzstd              x86_64 1.4.4-1.0.1.el8            ol8_baseos_latest 266 k
79 linux-firmware       noarch 999:20200902-999.5.gitd5f9eea5.el8
80                                                        ol8_baseos_latest 122 M
81 microcode_ctl        x86_64 4:20200609-2.20201027.1.0.1.el8_3
82                                                        ol8_baseos_latest 4.5 M
83 mozjs60              x86_64 60.9.0-4.0.1.el8           ol8_baseos_latest 6.6 M
84 open-vm-tools        x86_64 11.1.0-2.0.1.el8           ol8_appstream     716 k
85 os-prober            x86_64 1.74-6.0.1.el8             ol8_baseos_latest  51 k
86 parted               x86_64 3.2-38.0.1.el8             ol8_baseos_latest 556 k
87 platform-python      x86_64 3.6.8-31.0.1.el8           ol8_baseos_latest  83 k
88 plymouth             x86_64 0.9.4-7.20200615git1e36e30.0.1.el8
89                                                        ol8_appstream     127 k
90 plymouth-core-libs   x86_64 0.9.4-7.20200615git1e36e30.0.1.el8
91                                                        ol8_appstream     122 k
92 plymouth-scripts     x86_64 0.9.4-7.20200615git1e36e30.0.1.el8
93                                                        ol8_appstream      44 k
94 policycoreutils      x86_64 2.9-9.0.1.el8              ol8_baseos_latest 377 k
95 polkit               x86_64 0.115-11.0.1.el8           ol8_baseos_latest 154 k
96 polkit-libs          x86_64 0.115-11.0.1.el8           ol8_baseos_latest  76 k
97 python3-firewall     noarch 0.8.2-2.0.1.el8            ol8_baseos_latest 392 k
98 python3-hawkey       x86_64 0.48.0-5.0.2.el8           ol8_baseos_latest 112 k
99 python3-libdnf       x86_64 0.48.0-5.0.2.el8           ol8_baseos_latest 757 k
100 python3-libs         x86_64 3.6.8-31.0.1.el8           ol8_baseos_latest 7.8 M
101 python3-libxml2      x86_64 2.9.7-8.0.1.el8            ol8_baseos_latest 237 k
102 selinux-policy       noarch 3.14.3-54.0.1.el8          ol8_baseos_latest 623 k
103 selinux-policy-targeted
104                      noarch 3.14.3-54.0.1.el8          ol8_baseos_latest  15 M
105 sssd-client          x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 171 k
106 sssd-common          x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 1.5 M
107 sssd-kcm             x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 224 k
108 sssd-nfs-idmap       x86_64 2.3.0-9.0.1.el8            ol8_baseos_latest 105 k
109 systemd              x86_64 239-41.0.1.el8_3           ol8_baseos_latest 3.6 M
110 systemd-libs         x86_64 239-41.0.1.el8_3           ol8_baseos_latest 1.1 M
111 systemd-pam          x86_64 239-41.0.1.el8_3           ol8_baseos_latest 457 k
112 systemd-udev         x86_64 239-41.0.1.el8_3           ol8_baseos_latest 1.3 M
113 tuned                noarch 2.14.0-3.0.1.el8           ol8_baseos_latest 294 k
114 vim-minimal          x86_64 2:8.0.1763-15.0.1.el8      ol8_baseos_latest 572 k
115 xfsprogs             x86_64 5.4.0-1.0.1.el8            ol8_UEKR6         1.1 M
116再インストール:
117 acl                  x86_64 2.2.53-1.el8               ol8_baseos_latest  81 k
118 audit                x86_64 3.0-0.17.20191104git1c2f876.el8
119                                                        ol8_baseos_latest 254 k
120 audit-libs           x86_64 3.0-0.17.20191104git1c2f876.el8
121                                                        ol8_baseos_latest 116 k
122 authselect           x86_64 1.2.1-2.el8                ol8_baseos_latest 115 k
123 authselect-libs      x86_64 1.2.1-2.el8                ol8_baseos_latest 211 k
124 basesystem           noarch 11-5.el8                   ol8_baseos_latest  10 k
125 bash                 x86_64 4.4.19-12.el8              ol8_baseos_latest 1.5 M
126 bind-export-libs     x86_64 32:9.11.20-5.el8           ol8_baseos_latest 1.1 M
127 biosdevname          x86_64 0.7.3-2.el8                ol8_baseos_latest  44 k
128 brotli               x86_64 1.0.6-2.el8                ol8_baseos_latest 322 k
129 bzip2-libs           x86_64 1.0.6-26.el8               ol8_baseos_latest  48 k
130 c-ares               x86_64 1.13.0-5.el8               ol8_baseos_latest  93 k
131 ca-certificates      noarch 2020.2.41-80.0.el8_2       ol8_baseos_latest 391 k
132 chkconfig            x86_64 1.13-2.el8                 ol8_baseos_latest 194 k
133 cpio                 x86_64 2.12-8.el8                 ol8_baseos_latest 265 k
134 cracklib             x86_64 2.9.6-15.el8               ol8_baseos_latest  93 k
135 cracklib-dicts       x86_64 2.9.6-15.el8               ol8_baseos_latest 4.0 M
136 cronie               x86_64 1.5.2-4.el8                ol8_baseos_latest 119 k
137 cronie-anacron       x86_64 1.5.2-4.el8                ol8_baseos_latest  42 k
138 crontabs             noarch 1.11-16.20150630git.el8    ol8_baseos_latest  25 k
139 crypto-policies      noarch 20200713-1.git51d1222.el8  ol8_baseos_latest  62 k
140 crypto-policies-scripts
141                      noarch 20200713-1.git51d1222.el8  ol8_baseos_latest  67 k
142 cryptsetup-libs      x86_64 2.3.3-2.el8                ol8_baseos_latest 470 k
143 curl                 x86_64 7.61.1-14.el8              ol8_baseos_latest 353 k
144 cyrus-sasl-lib       x86_64 2.1.27-5.el8               ol8_baseos_latest 123 k
145 dbus-glib            x86_64 0.110-2.el8                ol8_baseos_latest 127 k
146 device-mapper        x86_64 8:1.02.171-5.el8           ol8_baseos_latest 373 k
147 device-mapper-event  x86_64 8:1.02.171-5.el8           ol8_baseos_latest 268 k
148 device-mapper-event-libs
149                      x86_64 8:1.02.171-5.el8           ol8_baseos_latest 267 k
150 device-mapper-libs   x86_64 8:1.02.171-5.el8           ol8_baseos_latest 406 k
151 device-mapper-persistent-data
152                      x86_64 0.8.5-4.el8                ol8_baseos_latest 468 k
153 dhcp-client          x86_64 12:4.3.6-41.el8            ol8_baseos_latest 318 k
154 dhcp-common          noarch 12:4.3.6-41.el8            ol8_baseos_latest 207 k
155 dhcp-libs            x86_64 12:4.3.6-41.el8            ol8_baseos_latest 147 k
156 diffutils            x86_64 3.6-6.el8                  ol8_baseos_latest 361 k
157 dmidecode            x86_64 1:3.2-6.el8                ol8_baseos_latest  91 k
158 dnf                  noarch 4.2.23-4.el8               ol8_baseos_latest 513 k
159 dnf-data             noarch 4.2.23-4.el8               ol8_baseos_latest 149 k
160 dnf-plugins-core     noarch 4.0.17-5.el8               ol8_baseos_latest  66 k
161 dosfstools           x86_64 4.1-6.el8                  ol8_baseos_latest 122 k
162 e2fsprogs            x86_64 1.45.6-1.el8               ol8_baseos_latest 1.0 M
163 e2fsprogs-libs       x86_64 1.45.6-1.el8               ol8_baseos_latest 233 k
164 efivar               x86_64 37-4.el8                   ol8_baseos_latest  36 k
165 efivar-libs          x86_64 37-4.el8                   ol8_baseos_latest 108 k
166 elfutils-debuginfod-client
167                      x86_64 0.180-1.el8                ol8_baseos_latest  64 k
168 elfutils-default-yama-scope
169                      noarch 0.180-1.el8                ol8_baseos_latest  49 k
170 elfutils-libelf      x86_64 0.180-1.el8                ol8_baseos_latest 214 k
171 elfutils-libs        x86_64 0.180-1.el8                ol8_baseos_latest 293 k
172 ethtool              x86_64 2:5.0-2.el8                ol8_baseos_latest 151 k
173 expat                x86_64 2.2.5-4.el8                ol8_baseos_latest 111 k
174 file                 x86_64 5.33-16.el8                ol8_baseos_latest  76 k
175 file-libs            x86_64 5.33-16.el8                ol8_baseos_latest 542 k
176 filesystem           x86_64 3.8-3.el8                  ol8_baseos_latest 1.1 M
177 findutils            x86_64 1:4.6.0-20.el8             ol8_baseos_latest 528 k
178 freetype             x86_64 2.9.1-4.el8_3.1            ol8_baseos_latest 394 k
179 gawk                 x86_64 4.2.1-1.el8                ol8_baseos_latest 1.1 M
180 gdbm                 x86_64 1:1.18-1.el8               ol8_baseos_latest 130 k
181 gdbm-libs            x86_64 1:1.18-1.el8               ol8_baseos_latest  60 k
182 geolite2-city        noarch 20180605-1.el8             ol8_appstream      19 M
183 geolite2-country     noarch 20180605-1.el8             ol8_appstream     1.0 M
184 gettext              x86_64 0.19.8.1-17.el8            ol8_baseos_latest 1.1 M
185 gettext-libs         x86_64 0.19.8.1-17.el8            ol8_baseos_latest 312 k
186 glib2                x86_64 2.56.4-8.el8               ol8_baseos_latest 2.5 M
187 gmp                  x86_64 1:6.1.2-10.el8             ol8_baseos_latest 321 k
188 gnupg2               x86_64 2.2.20-2.el8               ol8_baseos_latest 2.4 M
189 gnupg2-smime         x86_64 2.2.20-2.el8               ol8_baseos_latest 283 k
190 gnutls               x86_64 3.6.14-6.el8               ol8_baseos_latest 1.0 M
191 gobject-introspection
192                      x86_64 1.56.1-1.el8               ol8_baseos_latest 255 k
193 gpgme                x86_64 1.13.1-3.el8               ol8_baseos_latest 335 k
194 grep                 x86_64 3.1-6.el8                  ol8_baseos_latest 274 k
195 groff-base           x86_64 1.22.3-18.el8              ol8_baseos_latest 1.0 M
196 gzip                 x86_64 1.9-9.el8                  ol8_baseos_latest 167 k
197 hardlink             x86_64 1:1.3-6.el8                ol8_baseos_latest  29 k
198 hdparm               x86_64 9.54-2.el8                 ol8_baseos_latest 100 k
199 hostname             x86_64 3.20-6.el8                 ol8_baseos_latest  32 k
200 hwdata               noarch 0.314-8.6.el8              ol8_baseos_latest 1.6 M
201 ima-evm-utils        x86_64 1.1-5.el8                  ol8_baseos_latest  55 k
202 info                 x86_64 6.5-6.el8                  ol8_baseos_latest 198 k
203 initscripts          x86_64 10.00.9-1.el8              ol8_baseos_latest 338 k
204 ipcalc               x86_64 0.2.4-4.el8                ol8_baseos_latest  38 k
205 iprutils             x86_64 2.4.19-1.el8               ol8_baseos_latest 255 k
206 ipset                x86_64 7.1-1.el8                  ol8_baseos_latest  45 k
207 ipset-libs           x86_64 7.1-1.el8                  ol8_baseos_latest  71 k
208 iputils              x86_64 20180629-2.el8             ol8_baseos_latest 149 k
209 irqbalance           x86_64 2:1.4.0-4.el8              ol8_baseos_latest  55 k
210 jansson              x86_64 2.11-3.el8                 ol8_baseos_latest  46 k
211 json-c               x86_64 0.13.1-0.2.el8             ol8_baseos_latest  40 k
212 kbd                  x86_64 2.0.4-10.el8               ol8_baseos_latest 390 k
213 kbd-legacy           noarch 2.0.4-10.el8               ol8_baseos_latest 481 k
214 kbd-misc             noarch 2.0.4-10.el8               ol8_baseos_latest 1.5 M
215 kernel               x86_64 4.18.0-240.1.1.el8_3       ol8_baseos_latest 4.3 M
216 kernel-core          x86_64 4.18.0-240.1.1.el8_3       ol8_baseos_latest  30 M
217 kernel-modules       x86_64 4.18.0-240.1.1.el8_3       ol8_baseos_latest  26 M
218 kernel-tools         x86_64 4.18.0-240.1.1.el8_3       ol8_baseos_latest 4.5 M
219 kernel-tools-libs    x86_64 4.18.0-240.1.1.el8_3       ol8_baseos_latest 4.3 M
220 keyutils-libs        x86_64 1.5.10-6.el8               ol8_baseos_latest  34 k
221 kpartx               x86_64 0.8.4-5.el8                ol8_baseos_latest 108 k
222 krb5-libs            x86_64 1.18.2-5.el8               ol8_baseos_latest 837 k
223 langpacks-ja         noarch 1.0-12.el8                 ol8_appstream     9.5 k
224 less                 x86_64 530-1.el8                  ol8_baseos_latest 164 k
225 libacl               x86_64 2.2.53-1.el8               ol8_baseos_latest  35 k
226 libaio               x86_64 0.3.112-1.el8              ol8_baseos_latest  33 k
227 libarchive           x86_64 3.3.2-9.el8                ol8_baseos_latest 358 k
228 libassuan            x86_64 2.5.1-3.el8                ol8_baseos_latest  83 k
229 libattr              x86_64 2.4.48-3.el8               ol8_baseos_latest  27 k
230 libbasicobjects      x86_64 0.1.1-39.el8               ol8_baseos_latest  31 k
231 libblkid             x86_64 2.32.1-24.el8              ol8_baseos_latest 216 k
232 libcap               x86_64 2.26-4.el8                 ol8_baseos_latest  60 k
233 libcap-ng            x86_64 0.7.9-5.el8                ol8_baseos_latest  33 k
234 libcollection        x86_64 0.7.0-39.el8               ol8_baseos_latest  48 k
235 libcom_err           x86_64 1.45.6-1.el8               ol8_baseos_latest  49 k
236 libcomps             x86_64 0.1.11-4.el8               ol8_baseos_latest  81 k
237 libcroco             x86_64 0.6.12-4.el8_2.1           ol8_baseos_latest 113 k
238 libcurl              x86_64 7.61.1-14.el8              ol8_baseos_latest 298 k
239 libdaemon            x86_64 0.14-15.el8                ol8_baseos_latest  36 k
240 libdb                x86_64 5.3.28-39.el8              ol8_baseos_latest 750 k
241 libdb-utils          x86_64 5.3.28-39.el8              ol8_baseos_latest 149 k
242 libdhash             x86_64 0.5.0-39.el8               ol8_baseos_latest  34 k
243 libdrm               x86_64 2.4.101-1.el8              ol8_appstream     165 k
244 libedit              x86_64 3.1-23.20170329cvs.el8     ol8_baseos_latest 102 k
245 libestr              x86_64 0.1.10-1.el8               ol8_appstream      27 k
246 libevent             x86_64 2.1.8-5.el8                ol8_baseos_latest 253 k
247 libfastjson          x86_64 0.99.8-2.el8               ol8_appstream      37 k
248 libfdisk             x86_64 2.32.1-24.el8              ol8_baseos_latest 249 k
249 libffi               x86_64 3.1-22.el8                 ol8_baseos_latest  37 k
250 libgcrypt            x86_64 1.8.5-4.el8                ol8_baseos_latest 462 k
251 libgpg-error         x86_64 1.31-1.el8                 ol8_baseos_latest 242 k
252 libidn2              x86_64 2.2.0-1.el8                ol8_baseos_latest  94 k
253 libini_config        x86_64 1.3.1-39.el8               ol8_baseos_latest  70 k
254 libksba              x86_64 1.3.5-7.el8                ol8_baseos_latest 135 k
255 libldb               x86_64 2.1.3-2.el8                ol8_baseos_latest 178 k
256 libmaxminddb         x86_64 1.2.0-10.el8               ol8_appstream      33 k
257 libmetalink          x86_64 0.1.3-7.el8                ol8_baseos_latest  32 k
258 libmnl               x86_64 1.0.4-6.el8                ol8_baseos_latest  30 k
259 libmodulemd          x86_64 2.9.4-2.el8                ol8_baseos_latest 189 k
260 libmount             x86_64 2.32.1-24.el8              ol8_baseos_latest 232 k
261 libmspack            x86_64 0.7-0.3.alpha.el8.4        ol8_appstream      71 k
262 libndp               x86_64 1.7-3.el8                  ol8_baseos_latest  41 k
263 libnetfilter_conntrack
264                      x86_64 1.0.6-5.el8                ol8_baseos_latest  65 k
265 libnfnetlink         x86_64 1.0.1-13.el8               ol8_baseos_latest  33 k
266 libnfsidmap          x86_64 1:2.3.3-35.el8             ol8_baseos_latest 119 k
267 libnftnl             x86_64 1.1.5-4.el8                ol8_baseos_latest  83 k
268 libnghttp2           x86_64 1.33.0-3.el8_2.1           ol8_baseos_latest  77 k
269 libnl3               x86_64 3.5.0-1.el8                ol8_baseos_latest 323 k
270 libnl3-cli           x86_64 3.5.0-1.el8                ol8_baseos_latest 197 k
271 libnsl2              x86_64 1.2.0-2.20180605git4a062cf.el8
272                                                        ol8_baseos_latest  58 k
273 libpath_utils        x86_64 0.2.1-39.el8               ol8_baseos_latest  34 k
274 libpcap              x86_64 14:1.9.1-4.el8             ol8_baseos_latest 166 k
275 libpciaccess         x86_64 0.14-1.el8                 ol8_baseos_latest  32 k
276 libpipeline          x86_64 1.5.0-2.el8                ol8_baseos_latest  54 k
277 libpng               x86_64 2:1.6.34-5.el8             ol8_baseos_latest 126 k
278 libpsl               x86_64 0.20.2-6.el8               ol8_baseos_latest  61 k
279 libpwquality         x86_64 1.4.0-9.el8                ol8_baseos_latest 102 k
280 libref_array         x86_64 0.1.5-39.el8               ol8_baseos_latest  33 k
281 librepo              x86_64 1.12.0-2.el8               ol8_baseos_latest  90 k
282 libseccomp           x86_64 2.4.3-1.el8                ol8_baseos_latest  67 k
283 libsecret            x86_64 0.18.6-1.el8               ol8_baseos_latest 163 k
284 libselinux           x86_64 2.9-4.el8_3                ol8_baseos_latest 165 k
285 libselinux-utils     x86_64 2.9-4.el8_3                ol8_baseos_latest 243 k
286 libsemanage          x86_64 2.9-3.el8                  ol8_baseos_latest 165 k
287 libsepol             x86_64 2.9-1.el8                  ol8_baseos_latest 339 k
288 libsigsegv           x86_64 2.11-5.el8                 ol8_baseos_latest  30 k
289 libsmartcols         x86_64 2.32.1-24.el8              ol8_baseos_latest 175 k
290 libsolv              x86_64 0.7.11-1.el8               ol8_baseos_latest 358 k
291 libss                x86_64 1.45.6-1.el8               ol8_baseos_latest  53 k
292 libssh               x86_64 0.9.4-2.el8                ol8_baseos_latest 215 k
293 libssh-config        noarch 0.9.4-2.el8                ol8_baseos_latest  18 k
294 libsysfs             x86_64 2.1.0-24.el8               ol8_baseos_latest  53 k
295 libtalloc            x86_64 2.3.1-2.el8                ol8_baseos_latest  49 k
296 libtasn1             x86_64 4.13-3.el8                 ol8_baseos_latest  76 k
297 libtdb               x86_64 1.4.3-1.el8                ol8_baseos_latest  59 k
298 libteam              x86_64 1.31-2.el8                 ol8_baseos_latest  64 k
299 libtevent            x86_64 0.10.2-2.el8               ol8_baseos_latest  49 k
300 libtirpc             x86_64 1.1.4-4.el8                ol8_baseos_latest 112 k
301 libtool-ltdl         x86_64 2.4.6-25.el8               ol8_baseos_latest  58 k
302 libunistring         x86_64 0.9.9-3.el8                ol8_baseos_latest 422 k
303 libusbx              x86_64 1.0.23-4.el8               ol8_baseos_latest  74 k
304 libuser              x86_64 0.62-23.el8                ol8_baseos_latest 417 k
305 libutempter          x86_64 1.1.6-14.el8               ol8_baseos_latest  32 k
306 libuuid              x86_64 2.32.1-24.el8              ol8_baseos_latest  95 k
307 libverto             x86_64 0.3.0-5.el8                ol8_baseos_latest  24 k
308 libxcrypt            x86_64 4.1.1-4.el8                ol8_baseos_latest  73 k
309 libxkbcommon         x86_64 0.9.1-1.el8                ol8_appstream     116 k
310 libyaml              x86_64 0.1.7-5.el8                ol8_baseos_latest  61 k
311 logrotate            x86_64 3.14.0-4.el8               ol8_baseos_latest  86 k
312 lshw                 x86_64 B.02.19.2-2.el8            ol8_baseos_latest 341 k
313 lsscsi               x86_64 0.30-1.el8                 ol8_baseos_latest  69 k
314 lua-libs             x86_64 5.3.4-11.el8               ol8_baseos_latest 118 k
315 lvm2                 x86_64 8:2.03.09-5.el8            ol8_baseos_latest 1.6 M
316 lvm2-libs            x86_64 8:2.03.09-5.el8            ol8_baseos_latest 1.1 M
317 lz4-libs             x86_64 1.8.3-2.el8                ol8_baseos_latest  66 k
318 lzo                  x86_64 2.08-14.el8                ol8_baseos_latest  69 k
319 man-db               x86_64 2.7.6.1-17.el8             ol8_baseos_latest 887 k
320 memstrack            x86_64 0.1.11-1.el8               ol8_baseos_latest  48 k
321 mokutil              x86_64 1:0.3.0-10.el8             ol8_baseos_latest  45 k
322 mpfr                 x86_64 3.1.6-1.el8                ol8_baseos_latest 221 k
323 ncurses              x86_64 6.1-7.20180224.el8         ol8_baseos_latest 387 k
324 ncurses-base         noarch 6.1-7.20180224.el8         ol8_baseos_latest  81 k
325 ncurses-libs         x86_64 6.1-7.20180224.el8         ol8_baseos_latest 335 k
326 nettle               x86_64 3.4.1-2.el8                ol8_baseos_latest 300 k
327 newt                 x86_64 0.52.20-11.el8             ol8_baseos_latest 122 k
328 nftables             x86_64 1:0.9.3-16.el8             ol8_baseos_latest 312 k
329 npth                 x86_64 1.5-4.el8                  ol8_baseos_latest  26 k
330 numactl-libs         x86_64 2.0.12-11.el8              ol8_baseos_latest  36 k
331 openldap             x86_64 2.4.46-15.el8              ol8_baseos_latest 351 k
332 openssh              x86_64 8.0p1-5.el8                ol8_baseos_latest 521 k
333 openssh-clients      x86_64 8.0p1-5.el8                ol8_baseos_latest 666 k
334 openssh-server       x86_64 8.0p1-5.el8                ol8_baseos_latest 483 k
335 openssl              x86_64 1:1.1.1g-11.el8            ol8_baseos_latest 706 k
336 openssl-libs         x86_64 1:1.1.1g-11.el8            ol8_baseos_latest 1.5 M
337 openssl-pkcs11       x86_64 0.4.10-2.el8               ol8_baseos_latest  66 k
338 p11-kit              x86_64 0.23.14-5.el8_0            ol8_baseos_latest 272 k
339 p11-kit-trust        x86_64 0.23.14-5.el8_0            ol8_baseos_latest 139 k
340 pam                  x86_64 1.3.1-11.el8               ol8_baseos_latest 738 k
341 passwd               x86_64 0.80-3.el8                 ol8_baseos_latest 115 k
342 pciutils             x86_64 3.6.4-2.el8                ol8_baseos_latest 102 k
343 pciutils-libs        x86_64 3.6.4-2.el8                ol8_baseos_latest  54 k
344 pcre                 x86_64 8.42-4.el8                 ol8_baseos_latest 208 k
345 pcre2                x86_64 10.32-2.el8                ol8_baseos_latest 246 k
346 pigz                 x86_64 2.4-4.el8                  ol8_baseos_latest  80 k
347 pinentry             x86_64 1.1.0-2.el8                ol8_appstream     100 k
348 platform-python-pip  noarch 9.0.3-18.el8               ol8_baseos_latest 1.7 M
349 platform-python-setuptools
350                      noarch 39.2.0-6.el8               ol8_baseos_latest 631 k
351 polkit-pkla-compat   x86_64 0.1-12.el8                 ol8_baseos_latest  46 k
352 popt                 x86_64 1.16-14.el8                ol8_baseos_latest  61 k
353 prefixdevname        x86_64 0.1.0-6.el8                ol8_baseos_latest 427 k
354 procps-ng            x86_64 3.3.15-3.el8               ol8_baseos_latest 328 k
355 publicsuffix-list-dafsa
356                      noarch 20180723-1.el8             ol8_baseos_latest  56 k
357 python3-configobj    noarch 5.0.6-11.el8               ol8_baseos_latest  68 k
358 python3-dateutil     noarch 1:2.6.1-6.el8              ol8_baseos_latest 251 k
359 python3-dbus         x86_64 1.2.4-15.el8               ol8_baseos_latest 134 k
360 python3-decorator    noarch 4.2.1-2.el8                ol8_baseos_latest  27 k
361 python3-dmidecode    x86_64 3.12.2-15.el8              ol8_baseos_latest  94 k
362 python3-dnf          noarch 4.2.23-4.el8               ol8_baseos_latest 526 k
363 python3-dnf-plugins-core
364                      noarch 4.0.17-5.el8               ol8_baseos_latest 221 k
365 python3-gobject-base x86_64 3.28.3-2.el8               ol8_baseos_latest 313 k
366 python3-gpg          x86_64 1.13.1-3.el8               ol8_baseos_latest 244 k
367 python3-libcomps     x86_64 0.1.11-4.el8               ol8_baseos_latest  52 k
368 python3-libselinux   x86_64 2.9-4.el8_3                ol8_baseos_latest 283 k
369 python3-linux-procfs noarch 0.6.2-2.el8                ol8_baseos_latest  42 k
370 python3-nftables     x86_64 1:0.9.3-16.el8             ol8_baseos_latest  26 k
371 python3-perf         x86_64 4.18.0-240.1.1.el8_3       ol8_baseos_latest 4.4 M
372 python3-pip-wheel    noarch 9.0.3-18.el8               ol8_baseos_latest 1.0 M
373 python3-pyudev       noarch 0.21.0-7.el8               ol8_baseos_latest  84 k
374 python3-rpm          x86_64 4.14.3-4.el8               ol8_baseos_latest 157 k
375 python3-schedutils   x86_64 0.6-6.el8                  ol8_baseos_latest  29 k
376 python3-setuptools-wheel
377                      noarch 39.2.0-6.el8               ol8_baseos_latest 287 k
378 python3-six          noarch 1.11.0-8.el8               ol8_baseos_latest  38 k
379 python3-slip         noarch 0.6.4-11.el8               ol8_baseos_latest  38 k
380 python3-slip-dbus    noarch 0.6.4-11.el8               ol8_baseos_latest  39 k
381 python3-unbound      x86_64 1.7.3-14.el8               ol8_appstream     118 k
382 readline             x86_64 7.0-10.el8                 ol8_baseos_latest 199 k
383 rng-tools            x86_64 6.8-3.el8                  ol8_baseos_latest  59 k
384 rootfiles            noarch 8.1-22.el8                 ol8_baseos_latest  13 k
385 rpm                  x86_64 4.14.3-4.el8               ol8_baseos_latest 541 k
386 rpm-build-libs       x86_64 4.14.3-4.el8               ol8_baseos_latest 154 k
387 rpm-libs             x86_64 4.14.3-4.el8               ol8_baseos_latest 338 k
388 rpm-plugin-selinux   x86_64 4.14.3-4.el8               ol8_baseos_latest  75 k
389 rpm-plugin-systemd-inhibit
390                      x86_64 4.14.3-4.el8               ol8_baseos_latest  76 k
391 rsyslog              x86_64 8.1911.0-6.el8             ol8_appstream     732 k
392 sed                  x86_64 4.5-2.el8                  ol8_baseos_latest 298 k
393 setup                noarch 2.12.2-6.el8               ol8_baseos_latest 181 k
394 sg3_utils            x86_64 1.44-5.el8                 ol8_baseos_latest 917 k
395 sg3_utils-libs       x86_64 1.44-5.el8                 ol8_baseos_latest  99 k
396 shadow-utils         x86_64 2:4.6-11.el8               ol8_baseos_latest 1.2 M
397 shared-mime-info     x86_64 1.9-3.el8                  ol8_baseos_latest 328 k
398 slang                x86_64 2.3.2-3.el8                ol8_baseos_latest 368 k
399 snappy               x86_64 1.1.8-3.el8                ol8_baseos_latest  37 k
400 sqlite-libs          x86_64 3.26.0-11.el8              ol8_baseos_latest 580 k
401 squashfs-tools       x86_64 4.3-19.el8                 ol8_baseos_latest 165 k
402 sudo                 x86_64 1.8.29-6.el8               ol8_baseos_latest 923 k
403 tar                  x86_64 2:1.30-5.el8               ol8_baseos_latest 838 k
404 teamd                x86_64 1.31-2.el8                 ol8_baseos_latest 130 k
405 timedatex            x86_64 0.5-3.el8                  ol8_baseos_latest  32 k
406 trousers             x86_64 0.3.14-4.el8               ol8_baseos_latest 153 k
407 trousers-lib         x86_64 0.3.14-4.el8               ol8_baseos_latest 168 k
408 tzdata               noarch 2020d-1.el8                ol8_baseos_latest 471 k
409 unbound-libs         x86_64 1.7.3-14.el8               ol8_appstream     500 k
410 util-linux           x86_64 2.32.1-24.el8              ol8_baseos_latest 2.5 M
411 virt-what            x86_64 1.18-6.el8                 ol8_baseos_latest  35 k
412 which                x86_64 2.21-12.el8                ol8_baseos_latest  49 k
413 xkeyboard-config     noarch 2.28-1.el8                 ol8_appstream     782 k
414 xmlsec1              x86_64 1.2.25-4.el8               ol8_appstream     191 k
415 xmlsec1-openssl      x86_64 1.2.25-4.el8               ol8_appstream      94 k
416 xz                   x86_64 5.2.4-3.el8                ol8_baseos_latest 153 k
417 xz-libs              x86_64 5.2.4-3.el8                ol8_baseos_latest  94 k
418 yum                  noarch 4.2.23-4.el8               ol8_baseos_latest 192 k
419 zlib                 x86_64 1.2.11-16.el8_2            ol8_baseos_latest 102 k
420依存関係のインストール:
421 grub2-tools-efi      x86_64 1:2.02-90.0.1.el8          ol8_baseos_latest 470 k
422ダウングレード:
423 shim-x64             x86_64 15-11.0.5                  ol8_baseos_latest 656 k
424 
425トランザクションの概要
426================================================================================
427インストール     1 パッケージ
428アップグレード  99 パッケージ
429ダウングレード   1 パッケージ
430 
431ダウンロードサイズの合計: 389 M
432これでよろしいですか? [y/N]: y
433パッケージのダウンロード:
434(1/389): acl-2.2.53-1.el8.x86_64.rpm            724 kB/s |  81 kB     00:00
435<略>
436(389/389): linux-firmware-20200902-999.5.gitd5f  19 MB/s | 122 MB     00:06
437--------------------------------------------------------------------------------
438合計                                             25 MB/s | 389 MB     00:15
439警告: /var/cache/dnf/ol8_baseos_latest-e4c6155830ad002c/packages/shim-x64-15-11.0.5.x86_64.rpm: ヘッダー V3 RSA/SHA256 Signature、鍵 ID ad986da3: NOKEY
440Oracle Linux 8 BaseOS Latest (x86_64)           3.0 MB/s | 3.1 kB     00:00
441GPG 鍵 0xAD986DA3 をインポート中:
442 Userid     : "Oracle OSS group (Open Source Software group) <build@oss.oracle.com>"
443 Fingerprint: 76FD 3DB1 3AB6 7410 B89D B10E 8256 2EA9 AD98 6DA3
444 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
445これでよろしいですか? [y/N]: y
446鍵のインポートに成功しました
447トランザクションの確認を実行中
448<略>

(6) grub.conf の作成

grub2関連ファイルがちゃんと出来ているかを確認します。

1[root@centos8 ~]# ls -l /etc/grub2-efi.cfg
2lrwxrwxrwx. 1 root root 31 11月  6 04:56 /etc/grub2-efi.cfg -> ../boot/efi/EFI/redhat/grub.cfg
3[root@centos8 ~]# ls -l /boot/efi/EFI/*
4/boot/efi/EFI/BOOT:
5合計 1548
6-rwx------. 1 root root 1216760  7月 25 03:42 BOOTX64.EFI
7-rwx------. 1 root root  361600  7月 25 03:42 fbx64.efi
8 
9/boot/efi/EFI/centos:
10合計 12
11-rwx------. 1 root root 6544 12月 11 15:17 grub.cfg
12-rwx------. 1 root root 1024 12月 11 15:20 grubenv
13 
14/boot/efi/EFI/redhat:
15合計 4196
16-rwx------. 1 root root     134  7月 25 03:42 BOOTX64.CSV
17drwx------. 2 root root    4096 11月  6 04:56 fonts
18-rwx------. 1 root root    1024 12月 11 15:38 grubenv
19-rwx------. 1 root root 1895592 11月  6 04:56 grubx64.efi
20-rwx------. 1 root root 1165032  7月 25 03:42 mmx64.efi
21-rwx------. 1 root root 1216760  7月 25 03:42 shimx64.efi
22[root@centos8 ~]#

/etc/grub2-efi.cfg のリンク先が無いですね。

grub2-mkconfigコマンドで作成します。

1[root@centos8 ~]# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg
2Generating grub configuration file ...
3Adding boot menu entry for EFI firmware configuration
4done
5[root@centos8 ~]# ls -l /etc/grub2-efi.cfg
6lrwxrwxrwx. 1 root root 31 11月  6 04:56 /etc/grub2-efi.cfg -> ../boot/efi/EFI/redhat/grub.cfg
7[root@centos8 ~]# ls -l /boot/efi/EFI/*
8/boot/efi/EFI/BOOT:
9合計 1548
10-rwx------. 1 root root 1216760  7月 25 03:42 BOOTX64.EFI
11-rwx------. 1 root root  361600  7月 25 03:42 fbx64.efi
12 
13/boot/efi/EFI/centos:
14合計 12
15-rwx------. 1 root root 6544 12月 11 15:17 grub.cfg
16-rwx------. 1 root root 1024 12月 11 15:20 grubenv
17 
18/boot/efi/EFI/redhat:
19合計 4204
20-rwx------. 1 root root     134  7月 25 03:42 BOOTX64.CSV
21drwx------. 2 root root    4096 11月  6 04:56 fonts
22-rwx------. 1 root root    6544 12月 11 15:41 grub.cfg
23-rwx------. 1 root root    1024 12月 11 15:41 grubenv
24-rwx------. 1 root root 1895592 11月  6 04:56 grubx64.efi
25-rwx------. 1 root root 1165032  7月 25 03:42 mmx64.efi
26-rwx------. 1 root root 1216760  7月 25 03:42 shimx64.efi
27[root@centos8 ~]#

(9) 再起動

サーバを再起動します。

Oracle Linuxで起動してきます。

“CentOS8からOracle Linux 8への移行2(成功例/非公式手順/EFI環境用” への2件の返信

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

This site uses Akismet to reduce spam. Learn how your comment data is processed.

StatCounter - Free Web Tracker and Counter