Centos 7 替换阿里yum镜像

作者: 我犟不过你 | 来源:发表于2021-01-29 10:50 被阅读0次

    新安装的centos系统,我们在使用yum安装软件的时候,会发现国外很多软件的下载速度非常慢,这里我们选择替换成阿里云的yum源。
    这是阿里云的镜像地址:https://developer.aliyun.com/mirror/

    1.备份本地的源

    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
    

    这一步我觉得就是有备无患,基本没什么用处。

    2.下载阿里源

    wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
    

    首次使用的虚拟机可能没有wget命令

    -bash: wget: 未找到命令
    

    使用以下命令安装下,一路选择y:

    yum install wget
    

    再次执行获取镜像的命令即可。

    3.运行 yum makecache 生成缓存

    yum makecache
    

    相关文章

      网友评论

        本文标题:Centos 7 替换阿里yum镜像

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