前端之家收集整理的这篇文章主要介绍了
Centos下升级linux内核时遇到的问题,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
转载自http://blog.sina.com.cn/s/blog_7e513d7e01015j9b.html
在进行到 yum groupinstall "Development tools"时出现了:Loaded plugins:fastestmirrir Determining fastest mirrors的错误
参考http://blog.sina.com.cn/s/blog_7e513d7e01015j9b.html中的修改如下,已得以成功。
其大概意思是fastestmirror不能使用,fastestmirror是yum的一个加速插件,可能是系统不支持或者缺少组建导致的。处理办法就是禁用这个插件,方法如下:
@H_301_12@第一步:[root@bogon jmroot]#vim/etc/yum/pluginconf.d/fastestmirror.conf
@H_301_12@将其中的enabled = 1的值改为0
@H_301_12@第二步:[root@bogon jmroot]#vim /etc/yum.conf
@H_301_12@将其中的plugins=1的值改为0
@H_301_12@以上两步执行完后,再次执行yum groupinstall "Development tools"即ok。