初期設定 : システムを最新化する2021/12/16 |
サーバー運用開始後はシステムのアップデートが難しい場面もありますが、少なくともインストール直後のシステム構築時はシステムを最新化しておきましょう。
|
|
[1] | ネットワーク経由でアップデートを実行するコマンドは [yum] / [dnf] が用意されていますが、どちらも [dnf-3] へのリンクとして設定されているので実体は同じです。どちらを使用するかは好みでよいでしょう。 |
[root@dlp ~]#
which yum /usr/bin/yum
[root@dlp ~]#
ll /usr/bin/yum lrwxrwxrwx. 1 root root 5 Aug 5 2020 /usr/bin/yum -> dnf-3
[root@dlp ~]#
which dnf /usr/bin/dnf
[root@dlp ~]#
ll /usr/bin/dnf lrwxrwxrwx. 1 root root 5 Oct 25 23:06 /usr/bin/dnf -> dnf-3
[root@dlp ~]#
[root@dlp ~]# ll /usr/bin/dnf-3 -rwxr-xr-x. 1 root root 1942 Oct 25 23:06 /usr/bin/dnf-3 rpm -ql yum /etc/dnf/protected.d/yum.conf /etc/yum.conf /etc/yum/pluginconf.d /etc/yum/protected.d /etc/yum/vars /usr/bin/yum /usr/share/man/man1/yum-aliases.1.gz /usr/share/man/man5/yum.conf.5.gz /usr/share/man/man8/yum-shell.8.gz /usr/share/man/man8/yum.8.gz # 収録ファイルは全て [dnf] へのリンク [root@dlp ~]# ll /etc/yum.conf /etc/yum/vars /etc/yum/pluginconf.d lrwxrwxrwx. 1 root root 12 Oct 25 23:06 /etc/yum.conf -> dnf/dnf.conf lrwxrwxrwx. 1 root root 14 Oct 25 23:06 /etc/yum/pluginconf.d -> ../dnf/plugins lrwxrwxrwx. 1 root root 11 Oct 25 23:06 /etc/yum/vars -> ../dnf/vars |
[2] | サーバー運用開始後はシステムのアップデートが難しい場面も多々ありますが、少なくともインストール直後のシステム構築時は、システムを最新化しておきましょう。 |
[root@dlp ~]# dnf -y upgrade CentOS Stream 9 - BaseOS 7.2 kB/s | 8.1 kB 00:01 CentOS Stream 9 - BaseOS 242 kB/s | 1.7 MB 00:07 CentOS Stream 9 - AppStream 26 kB/s | 8.2 kB 00:00 CentOS Stream 9 - AppStream 1.3 MB/s | 9.7 MB 00:07 Dependencies resolved. ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: kernel x86_64 5.14.0-30.el9 baseos 158 k Upgrading: NetworkManager x86_64 1:1.36.0-0.2.el9 baseos 2.2 M NetworkManager-config-server noarch 1:1.36.0-0.2.el9 baseos 13 k NetworkManager-libnm x86_64 1:1.36.0-0.2.el9 baseos 1.7 M NetworkManager-team x86_64 1:1.36.0-0.2.el9 baseos 31 k NetworkManager-tui x86_64 1:1.36.0-0.2.el9 baseos 225 k bind-libs x86_64 32:9.16.23-1.el9 appstream 1.2 M bind-license noarch 32:9.16.23-1.el9 appstream 16 k bind-utils x86_64 32:9.16.23-1.el9 appstream 210 k binutils x86_64 2.35.2-13.el9 baseos 5.6 M binutils-gold x86_64 2.35.2-13.el9 baseos 739 k bpftool x86_64 5.14.0-30.el9 baseos 887 k cockpit x86_64 259-1.el9 baseos 45 k cockpit-bridge x86_64 259-1.el9 baseos 492 k cockpit-packagekit noarch 259-1.el9 appstream 588 k cockpit-podman noarch 38-1.el9 appstream 472 k cockpit-storaged noarch 259-1.el9 appstream 587 k cockpit-system noarch 259-1.el9 baseos 3.2 M cockpit-ws x86_64 259-1.el9 baseos 1.3 M ..... ..... |
Sponsored Link |