本文摘自:RHEL7.x更换阿里云yum源
RHEL7.X,已联网
rpm -qa | grep yum
rpm -qa | grep yum | xargs rpm -e --nodeps
# 创建安放rpm包的文件夹
cd /etc/yum.repos.d/
mkdir yum-rpm && cd yum-rpm
# 下载rpm包
wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm
wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-3.4.3-167.el7.centos.noarch.rpm
wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-53.el7.noarch.rpm
wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/yum-utils-1.1.31-53.el7.noarch.rpm
wget https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/python-urlgrabber-3.10-10.el7.noarch.rpm
以上命令,最好一条条复制下载,如无法下载安装,根据rpm包主要关键字到阿里云CentOS-yum源库地址库中搜索,获取最新rpm包的地址后,使用wget进行下载安装即可。
cd /etc/yum.repos.d/yum-rpm
rpm -ivh *.rpm --force --nodeps
加上
--force
参数强制安装,解决安装过程中的的依赖问题。
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
vim /etc/yum.repos.d/CentOS-Base.repo
:%s/$releasever/7/g
yum clean all
yum makecache
yum update
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:RHEL7.x更换阿里云yum源