Sen*_*eer 4 linux centos centos8
有谁知道 CentOS Linux 中以下命令有什么区别?:
dnf update
yum update
Run Code Online (Sandbox Code Playgroud)
哪一个更适合与 Cron 一起使用作为自动操作系统更新?
提前致谢。
yum
dnf
在 CentOS 8 中被替换为。该命令yum
仍然存在,因为人们在未来几年仍然会记得它。它唯一做的就是调用dnf
.
[root@localhost ~]# ls -l /usr/bin/yum
lrwxrwxrwx. 1 root root 5 Jul 21 18:46 /usr/bin/yum -> dnf-3
[root@localhost ~]# file /usr/bin/yum
/usr/bin/yum: symbolic link to dnf-3
Run Code Online (Sandbox Code Playgroud)