linux yum 时出现Determining fastest mirrors
Centons下
其大概意思是fastestmirror不能使用,fastestmirror是yum的一个加速插件,也就是说一直在判断最快镜像,由于已经指定了yum源,所以不需要些插件,可以用动禁用。
解决方法:
1 | [root@CentOS_7 etc]# vim /etc/yum/pluginconf.d/fastestmirror.conf |
修改里面的enabled=1 修改成 enabled=0;
1 | [root@CentOS_7 etc]# vim /etc/yum.conf |
修改里面的plugins=1 修改成 plugins=0
1 2 3 | [root@CentOS_7 etc]# yum clean dbcache #删除数据库缓存Cleaning repos: base extras updates18 sqlite files removed |