闲者博客 - yum https://bk1314.com/tag/yum/ liunx centos yum update kernel 命令方法 https://bk1314.com/54.html 2022-03-03T01:43:00+08:00 1.查看当前kernel版本uname -r2.查看已安装版本rpm -q kernel3.查看可升级kernel版本yum list kernel4.升级kernel版本yum update kernel5.删除旧的内核方法一:安装yum-utls:yum install -y yum-utils设置你想要保留多少旧的内核,比如我想保留两个:sudo package-cleanup --oldkernels --count=2方法二:直接删除对应版本rpm -e kernel-*6.设置永久的内核安装数量vim /etc/yum.conf设置installonly_limit=2,2为数量7.服务器重启后,使用前几步查看的信息会变为新的kernel版本信息[post cid="53" /][post cid="52" /] CentOS yum update 不升级内核版本方法 https://bk1314.com/53.html 2022-03-03T01:39:00+08:00 1.查看操作系统版本[root@ser875814510906 ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 2.执行yum update 进行升级# yum update [root@ser875814510906 ~]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core)可以看到系统默认升级到了7.9版本3.如果不想升级内核及系统版本,则在执行 yum update之前在 /etc/yum.conf 的 [main] 后面添加以下配置exclude=kernel* exclude=centos-release*这样,执行 yum update 后[root@ser875814510906 ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core)还是原来的系统版本4.还要一种直接命令实现不更新内核yum -y upgradeyum -y update:升级所有包同时,也升级软件和系统内核;yum -y upgrade:只升级所有包,不升级软件和系统内核,软件和内核保持原样。[post cid="54" /][post cid="52" /] 通过yum-cron对linux自动进行安全更新 https://bk1314.com/52.html 2022-03-03T01:26:00+08:00 通过yum-cron对Linux进行安全更新使用yum-cron可以定时的更新我们的系统。特别是针对于系统的安全更新。如果有一些同学认为更新系统需要手动来,或者不确定更新会影响到运行的服务,可以手动来,或者使用ansible等工具批量操作。在这里,来配置一下yum-cron这个工具。安装yum install yum-cron配置You need to edit /etc/yum/yum-cron.conf and /etc/yum/yum-cron-hourly.conf files using a text editor such as vi command:yum-cron有两个配置文件:/etc/yum/yum-cron.conf 和 /etc/yum/yum-cron-hourly.conf。这两个配置文件内容差不多,用于配置每天需要执行的内容和每小时需要执行的内容。在配置文件中,提供的更新策略为:# What kind of update to use: # default = yum upgrade # security = yum --security upgrade # security-severity:Critical = yum --sec-severity=Critical upgrade # minimal = yum --bugfix update-minimal # minimal-security = yum --security update-minimal # minimal-security-severity:Critical = --sec-severity=Critical update-minimaldefault 默认的更新,类似yum updatesecurity 安全更新, 类似yum --secruity upgradesecurity-severity:Critical 重要的安全更新,类似yum --sec-severity=Critical upgrademinimal 最小化更新,类似yum --bugfix update-minimalminimal-security 最小化安全更新,类似yum --security update-minimalminimal-security-severity:Critical 最小化重要安全更新,类似yum --sec-severity=Critical update-minimal通过update-cmd指定相应的更新策略。如: 需要配置只需要更新重要的安全更新,则配置为update_cmd = security-severity:Criticalapply_updates设置是否提交相应的安全更新,如果设置为no,则只会检测存在更新,但不会直接更新,如要自动更新,需将apply_updates设置为yesapply_updates = yesrandom_sleep设置最大的随机启动时间,设置随机启动是为了解决大量服务器同时启动更新,对服务器环境造成影响。(考虑的很周到呢,不同于我们通过crontab设置一个固定的时间进行更新)random_sleep的时间单位为秒。系统默认设置为6*60 = 360,即6小时:random_sleep = 360在生产环境,我们通常不愿意去更新系统的内核,那么,通过exclude和YUM_PARAMETER可以将内核类的更新排除掉.在CentOS/RHEL 7.x系统中,commands配置里最底下加入下面内容排除:exclude=kernel*在RHEL/CentOS 6.x系统中,加入以下内容排除:YUM_PARAMETER=kernel*配置参考:[root@ttt yum]# cat yum-cron.conf | grep -vE '^#|^$' [commands] update_cmd = security-severity:Critical update_messages = yes download_updates = yes apply_updates = yes random_sleep = 360 exclude=kernel* [emitters] system_name = None emit_via = stdio output_width = 80 [email] email_from = root@localhost email_to = root email_host = localhost [groups] group_list = None group_package_types = mandatory, default [base] debuglevel = -2 mdpolicy = group:main配置完成后,需要配置 /etc/yum/yum-cron-hourly.conf 让yum-cron每小时都执行。如果需要让yum-cron每天执行一次,需要配置/etc/cron.daily/0yum-daily.cron。[root@ttt yum]# cat /etc/cron.hourly/0yum-hourly.cron #!/bin/bash # Only run if this flag is set. The flag is created by the yum-cron init # script when the service is started -- this allows one to use chkconfig and # the standard "service stop|start" commands to enable or disable yum-cron. if [[ ! -f /var/lock/subsys/yum-cron ]]; then exit 0 fi # Action! exec /usr/sbin/yum-cron /etc/yum/yum-cron-hourly.conf[root@ttt yum]# cat /etc/cron.daily/0yum-daily.cron #!/bin/bash # Only run if this flag is set. The flag is created by the yum-cron init # script when the service is started -- this allows one to use chkconfig and # the standard "service stop|start" commands to enable or disable yum-cron. if [[ ! -f /var/lock/subsys/yum-cron ]]; then exit 0 fi # Action! exec /usr/sbin/yum-cron以上就是yum-cron的大概的配置信息。如果需要查看更详细的,可以通过系统的man命令。[root@ttt yum]# man yum-cron[post cid="53" /][post cid="54" /]