美文网首页
yum禁用fastestmirror插件

yum禁用fastestmirror插件

作者: 北二条 | 来源:发表于2019-05-15 15:01 被阅读0次

    不知道虚拟机抽了什么风,安装东西总是用到一个fastestmirror的东西

    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirrors.huaweicloud.com
     * extras: mirror.lzu.edu.cn
     * updates: mirror.jdcloud.com
    

    系统安装的是纯净的centos7-minimal版本的,不知道上面那三个货是从哪来的,造成我安装软件版本普遍较低啊。那就把fastestmirror禁用掉吧:

    yum --disableplugin=fastestmirror update
    

    好像还是不太好使,
    那就先整一个163的镜像源:

    [update]
    name=update
    baseurl=http://mirrors.163.com/centos/7/updates/x86_64/
    enable=1
    gpgcheck=0
    
    
    [extras]
    name=extras
    baseurl=http://mirrors.163.com/centos/7/extras/x86_64/
    enable=1
    gpgcheck=0
    
    
    [os]
    name=os
    baseurl=http://mirrors.163.com/centos/7/os/x86_64/
    enable=1
    gpgcheck=0
    
    [storage]
    name=storage
    baseurl=http://mirrors.163.com/centos/7/storage/x86_64/gluster-5/
    enable=1
    gpgcheck=0
    

    然后清理一下

    yum clean all
    

    然后makecache

    yum makecache
    

    试用后,还是不行,只能放大招了:
    安装epel:

    CentOs 7.X:
        rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
        rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
    

    如此解决问题。。。。

    相关文章

      网友评论

          本文标题:yum禁用fastestmirror插件

          本文链接:https://www.haomeiwen.com/subject/eqbpaqtx.html