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

    Centos下

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

    root@hy]# 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

    来自网络的资料,仅供学习参考~~

  • 相关阅读:
    中英切换
    vue-cli3 关闭一直运行的 /sockjs-node/info?t= ...
    vue 深拷贝
    C++ 中 typename
    将博客搬至CSDN
    死锁及处理
    C 运算符优先级
    阻塞与非阻塞,同步与异步
    同步函数与异步函数
    C 结构体位域
  • 原文地址:https://www.cnblogs.com/nebie/p/6128692.html
Copyright © 2011-2022 走看看