初期設定 : システムを最新化する2021/02/19 |
サーバー運用開始後はシステムのアップデートが難しい場面もありますが、少なくともインストール直後のシステム構築時はシステムを最新化しておきましょう。
|
|
[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 Aug 5 2020 /usr/bin/dnf -> dnf-3
[root@dlp ~]#
ll /usr/bin/dnf-3 -rwxr-xr-x. 1 root root 1954 Aug 5 2020 /usr/bin/dnf-3
[root@dlp ~]#
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 lrwxrwxrwx. 1 root root 12 Aug 5 2020 /etc/yum.conf -> dnf/dnf.conf [root@dlp ~]# ll /etc/yum/vars lrwxrwxrwx. 1 root root 11 Aug 5 2020 /etc/yum/vars -> ../dnf/vars |
[2] | サーバー運用開始後はシステムのアップデートが難しい場面も多々ありますが、少なくともインストール直後のシステム構築時は、システムを最新化しておきましょう。 |
[root@dlp ~]# dnf -y upgrade Last metadata expiration check: 0:50:40 ago on Fri 19 Feb 2021 12:00:48 PM JST. Dependencies resolved. ============================================================================================================ Package Arch Version Repo Size ============================================================================================================ Installing: kernel x86_64 4.18.0-277.el8 baseos 5.5 M kernel-core x86_64 4.18.0-277.el8 baseos 35 M kernel-modules x86_64 4.18.0-277.el8 baseos 28 M ..... ..... |
Sponsored Link |