yum 时一直停在Determining fastest mirrors 界面

阅读更多

在yum makecache时,一直停在Determining fastest mirrors 这个界面,也就是说一直在判断最快镜像,由于已经指定了yum源,所以不需要些插件,可以用动禁用。

解决方法:

修改/etc/yum/pluginconf.d/fastestmirror.conf里面的enabled=0;

修改/etc/yum.conf里面的plugins=0

问题解决。

 

 

=============================================================

Centons下
其大概意思是fastestmirror不能使用,fastestmirror是yum的一个加速插件,具体我也没有仔细了解过,可能是系统不支持或者缺少组建导致的。处理办法就是禁用这个插件,方法如下:
[email protected]]# vi  /etc/yum/pluginconf.d/fastestmirror.conf   
  
[main]   
enabled=0  //把1改为0  
verbose=0  
socket_timeout=3  
hostfilepath=/var/cache/yum/timedhosts.txt   
maxhostfileage=10  
maxthreads=15  
#exclude=.gov, facebook
=======================================================================================
修改以下配置文件
 #vi /etc/yum.conf

[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1                 #将plugins的值修改为0
installonly_limit=5

你可能感兴趣的:(yum 时一直停在Determining fastest mirrors 界面)