每天自动升级你的Centos

2022-12-28 09:48:06 浏览数 (1)

搜到了这一篇文章Automatic nightly YUM updates with yum-cron

给大家安利一下。

代码语言:javascript复制
# 安装
yum install yum-cron -y

# 配置
vim /etc/sysconfig/yum-cron

# 开启服务
chkconfig yum-cron on
# or
chkconfig --level 345 yum-cron on


# 运行服务
service yum-cron start

# 检查日志
grep yum.cron /var/log/cron | tail -10

0 人点赞