zoukankan      html  css  js  c++  java
  • 解决YUM下Loaded plugins: fastestmirror Determining fastest mirrors 的问题

    Centos

    其大概意思是fastestmirror不能使用,fastestmirror是yum的一个加速插件,具体我也没有仔细了解过,可能是系统不支持或者缺少组建导致的。处理办法就是禁用这个插件,方法如下:

      1. root@huoduan.com]# vi  /etc/yum/pluginconf.d/fastestmirror.conf   

      2. [main]   

      3. enabled=0  //把1改为0  

      4. verbose=0  

      5. socket_timeout=3  

      6. hostfilepath=/var/cache/yum/timedhosts.txt   

      7. maxhostfileage=10  

      8. maxthreads=15  

      9. #exclude=.gov, facebook

      10. =======================================================================================

      11. 修改以下配置文件

      12. #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

        http://hi.baidu.com/kinvar/item/29ba6ce8606f16385b7cfbd2

  • 相关阅读:
    Libvirt错误总结
    linux学习
    HMC 命令行登陆设置
    AIX扩VG和扩文件系统
    Bootstrap CSS2
    Bootstrap CSS
    JQuery的实例集合
    JQuery的noConflict()方法
    android的intent实现页面的跳转
    android的activity
  • 原文地址:https://www.cnblogs.com/chen110xi/p/3625208.html
Copyright © 2011-2022 走看看