我已经尝试过什么本文描述:
yum install yum-security
下一步是
yum list-security
但结果是:
Loading mirror speeds from cached hostfile * base: mirror.anl.gov * epel: mirrors.liquidweb.com * extras: mirror.wiredtree.com * updates: centos.mirrors.tds.net * webtatic: us-east.repo.webtatic.com Killed
知道它为什么会被杀死吗?我不关心如何如果有其他方法可以做到,我也可以接受。
系统版本是这个
2.6.32-042stab088.4 #1 SMP 星期六 6月 21日 00:15:09 MSK 2014 x86_64 x86_64 x86_64 GNU/Linux
编辑:
运行yum clean all
然后再次尝试并没有帮助:
[root@foobar burzum]# yum clean all
Loaded plugins: fastestmirror, security
Cleaning repos: atrpms base epel extras nginx updates vz-base vz-updates webtatic
Cleaning up Everything
Cleaning up list of fastest mirrors
[root@florian-kraemer burzum]# yum list-security
Loaded plugins: fastestmirror, security
Determining fastest mirrors
epel/metalink | 14 kB 00:00
* base: centos.corenetworks.net
* epel: mirrors.liquidweb.com
* extras: mirror.wiredtree.com
* updates: centos.mirrors.tds.net
* webtatic: us-east.repo.webtatic.com
atrpms | 3.0 kB 00:00
atrpms/primary_db | 1.7 MB 00:01
base | 3.7 kB 00:00
base/primary_db | 4.6 MB 00:02
epel | 4.4 kB 00:00
epel/primary_db | 6.3 MB 00:03
extras | 3.3 kB 00:00
extras/primary_db | 19 kB 00:00
nginx | 2.9 kB 00:00
nginx/primary_db | 34 kB 00:00
updates | 3.4 kB 00:00
updates/primary_db | 156 kB 00:00
vz-base | 951 B 00:00
vz-base/primary | 1.3 kB 00:00
vz-base 3/3
vz-updates | 951 B 00:00
vz-updates/primary | 2.2 kB 00:00
vz-updates 8/8
webtatic | 3.6 kB 00:00
webtatic/primary_db | 167 kB 00:00
epel/updateinfo | 858 kB 00:00
Killed
[root@foobar burzum]#
答案1
回答晚了,但这通常是由于内存耗尽造成的。安全插件似乎使用了额外的内存。
答案2
祝你好运实现 2009 年的文章。CentOS 6/7 没有在包元数据中提供“安全”类别(与 RHEL 不同),因此无论你使用什么 yum 插件魔法,它都不起作用。
最佳做法是全部更新,并且根据我的实践,完整更新仍然足够保守,因此出现问题的几率非常小。
答案3
工作解决方案:仅限 Centos 安全更新
sudo yum install yum-plugin-changelog pcre-devel python-pip
mkdir /var/lib/centos-package-cron
pip install centos_package_cron
centos-package-cron --output stdout --forceold | pcregrep -M 'Packages:[^:]*' | grep -o "[^* ]*" | grep -v 'Packages:' | grep -v 'References' | sort | uniq | xargs yum -y update
答案4
您需要安装名为 yum-plugin-security 的插件。命令会为您提供安全信息。