Centos 7 安装修改yum数据源(使用aliyun数据源)

  • Post author:
  • Post category:其他




安装yum

  • 下载最新的yum-3.2.28.tar.gz并解压

    wget http://yum.baseurl.org/download/3.2/yum-3.2.28.tar.gz
    tar xvf yum-3.2.28.tar.gz 
    

    如果提示未找到wget可以直接使用链接在浏览器上现在然后传入系统,安装完成后直接使用

    yum -y install wget 安装

  • 进入目录,运行安装

    cd yum-3.2.28  
    python yummain.py install yum  
    

    如果结果提示错误: CRITICAL:yum.cli:Config Error: Error accessing file for config file:///etc/

    可能是原来是缺少配置文件。在etc目录下面新建yum.conf文件,然后再次运行 yummain.py install yum,顺利完成安装

  • 更新系统

    yum check-update  
    yum update  
    yum clean all
    



修改yum数据源

  • 备份数据源

    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak
    
  • 下载aliyun数据源

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

    wget指令不存在

    [root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    -bash: wget: command not found
    

    安装wget提示需要选择数据源

    [root@localhost ~]# yum install wget
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
    There are no enabled repos.
     Run "yum repolist all" to see the repos you have.
     To enable Red Hat Subscription Management repositories:
         subscription-manager repos --enable <repo>
     To enable custom repositories:
         yum-config-manager --enable <repo> 
    

    索性不使用wget,直接下载数据源复制到服务器

    https://download.csdn.net/download/weixin_43165534/12503968


    在这里插入图片描述

  • 生成缓存

    [root@localhost ~]# yum clean all
    [root@localhost ~]# yum makecache
    
  • 更新数据源

    [root@localhost ~]# yum -y update 
    



版权声明:本文为weixin_43165534原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。