首页 > 其他 > 详细

Redhat7 更换 centos7 yum源(已验证)

时间:2021-01-29 10:39:43      阅读:67      评论:0      收藏:0      [点我收藏+]

错误描述

This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. 

解决步骤

删除redhat原有的yum

rpm -aq|grep yum|xargs rpm -e --nodeps 

下载yum安装文件

技术分享图片
#到这个网站去下载如下RPM包
http://mirrors.163.com/centos/7/os/x86_64/Packages/
wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-3.4.3-163.el7.centos.noarch.rpm
wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm
wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-52.el7.noarch.rpm
wget http://mirrors.163.com/centos/7/os/x86_64/Packages/python-iniparse-0.4-9.el7.noarch.rpm
ll
技术分享图片

进行安装yum

rpm -ivh --force --nodeps python-iniparse-0.4-9.el7.noarch.rpm; rpm -ivh --force --nodeps yum-metadata-parser-1.1.4-10.el7.x86_64.rpm
rpm -ivh --force --nodeps yum-3.4.3-163.el7.centos.noarch.rpm yum-plugin-fastestmirror-1.1.31-52.el7.noarch.rpm
注意:最后两个包必需同时安装,否则会相互依赖

设置源

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

清除原有缓存

yum clean all

重建缓存,以提高搜索安装软件的速度

yum makecache
如果有提示错误,运行下面的命令:[Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" 
 
sed -i ‘s/\$releasever/7/‘ CentOS-Base.repo

 备注:把文件里的$releasever替换为7 最后:重新生成缓存,数字不为0,就OK了

yum clean all; yum makecache

更新系统

yum update

Redhat7 更换 centos7 yum源(已验证)

原文:https://www.cnblogs.com/mingyue2021/p/14343229.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!