使用百度云服务器,发现百度yum源非常不稳定,果断采用阿里源,操作步骤如下: 一、备份 $ cd /etc/yum.repos.d/ $ mv baidu-bcm.repo baidu-bcm.repo.backup $ mv CentOS-Base.repo CentOS-Base.repo.backup 二、下载新的CentOS-Base.repo 到/etc/yum.repos.d/ ##查看Centos操作系统版本 $ cat /etc/redhat-release ##CentOS 5 $ wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo ##CentOS 6 $ wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo ##CentOS 7 $ wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 三、运行yum makecache生成缓存 $ rm -rf /var/cache/yum $ yum clean all $ yum makecache $ yum update
原文地址:https://www.cnblogs.com/linjiqin/p/11565054.html
时间: 2024-11-06 14:41:22