• jQuery火箭图标返回顶部代码


    这里写图片描述

    CentOS-5的yum源无法使用问题

    [root@37wan ~]# yum -y install gcc
    Loaded plugins: fastestmirror
    Determining fastest mirrors
    YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
     Eg. Invalid release/
    removing mirrorlist with no valid mirrors: /var/cache/yum/base/mirrorlist.txt
    Error: Cannot find a valid baseurl for repo: base

    可以看出:URLs不是ftp或http地址,打开yum查看:

    [base]
    name=CentOS-$releasever - Base
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
    #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    [root@ yum.repos.d]# wget mirrorlist=http://mirrorlist.centos.org/6release=$releasever&arch=$basearch&repo=os  
    [1] 4853  
    [2] 4854  
    [root@ yum.repos.d]# mirrorlist=http://mirrorlist.centos.org/6release=: Unsupported scheme.  

    即源的网址有问题。
    更新文件内容,用以下内容替换:

    # The mirror system uses the connecting IP address of the client and the  
    # update status of each mirror to pick mirrors that are updated to and  
    # geographically close to the client.  You should use this for CentOS updates  
    # unless you are manually picking other mirrors.  
    #  
    # If the mirrorlist= does not work for you, as a fall back you can try the   
    # remarked out baseurl= line instead.  
    #  
    #  
    
    
    [base]  
    name=CentOS-$releasever - Base  
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os  
    #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/  
    baseurl=http://vault.centos.org/5.11/os/$basearch/  
    gpgcheck=1  
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5  
    
    
    #released updates   
    [updates]  
    name=CentOS-$releasever - Updates  
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates  
    #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/  
    baseurl=http://vault.centos.org/5.11/updates/$basearch/  
    gpgcheck=1  
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5  
    
    
    #additional packages that may be useful  
    [extras]  
    name=CentOS-$releasever - Extras  
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras  
    #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/  
    baseurl=http://vault.centos.org/5.11/extras/$basearch/  
    gpgcheck=1  
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5  
    
    
    
    
    #additional packages that extend functionality of existing packages  
    [centosplus]  
    name=CentOS-$releasever - Plus  
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus  
    #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/  
    baseurl=http://vault.centos.org/5.11/centosplus/$basearch/  
    gpgcheck=1  
    enabled=0  
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5  
    
    
    
    
    #contrib - packages by Centos Users  
    [contrib]  
    name=CentOS-$releasever - Contrib  
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib  
    #baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/  
    baseurl=http://vault.centos.org/5.11/contrib/$basearch/  
    gpgcheck=1  
    enabled=0  
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5</span></strong></span>  
    

    修改文件后,清空yum源缓存:
    yum clean all #清空yum源缓存
    yum makecache #从新加载新缓存

    用国内的yum源会出现一下问题,用上述解决办法,也ok,虽然会有一个连接报错

    http://mirrors.aliyun.com/centos/5/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found

    用浏览器打开http://mirrors.aliyun.com/centos/5/os/x86_64/repodata/repomd.xml,根本找不到这个文件,163……也是,但是Centos6内有,说明国内也不知Centos5了!

  • 相关阅读:
    视频流媒体服务器播放视频或直播为什么要使用编解码?
    安防视频监控直播的画面都是如何采集的?
    为什么说线上教育是未来的趋势?
    音视频流媒体服务器发展到现在有哪些难题?应该怎么解决?
    视频流媒体服务器如何将视频直播转推到其他平台?
    为什么流媒体服务器做安防视频直播或者娱乐直播服务?
    安防音视频流媒体服务器EasyDSS之编解码的基本原理及压缩编码的方法介绍
    区块链保护隐私,我们真的需要吗?
    你可能还是低估了云计算的力量......
    区块链究竟有什么价值体现?
  • 原文地址:https://www.cnblogs.com/moyand/p/8520051.html
Copyright © 2020-2023  润新知