Redhat6.9更换yum源

简介:

1、查询安装的rpm包

1
rpm -qa | grep  yum

 


2. 删除自带的 rpm包

1
rpm -qa| grep  yum| xargs  rpm -e --nodeps

因为一些包之间可能会有依赖关系,所以我们需要加上参数 --nodeps 无视依赖关系。


 


3. 下载rpm包


rpm包下载地址http://mirrors.163.com/centos/6.9/os/x86_64/


在这个网站里,你可以自己选择需要下载的文件,进入形如5/或者6/的文件下载,其他的无法下载。

1
2
3
4
5
6
# mkdir yum
# cd yum/
wget http: //mirrors .163.com /centos/6 .9 /os/x86_64/Packages/yum-3 .2.29-81.el6.centos.noarch.rpm
wget http: //mirrors .163.com /centos/6 .9 /os/x86_64/Packages/yum-plugin-fastestmirror-1 .1.30-40.el6.noarch.rpm
wget http: //mirrors .163.com /centos/6 .9 /os/x86_64/Packages/yum-metadata-parser-1 .1.2-16.el6.x86_64.rpm
wget http: //mirrors .163.com /centos/6 .9 /os/x86_64/Packages/yum-metadata-parser-1 .1.2-16.el6.x86_64.rpm

4、安装RPM包

1
2
# rpm -ivh *.rpm
# rpm -ivh yum*.rpm

5、删除原来的yum源

1
2
# cd /etc/yum.repos.d
# rm -f *.repo

6、下载163的yum源

1
# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

7、编辑yum源repo文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
vim CentOS6-Base-163.repo
name=CentOS-$releasever - Base - 163.com
baseurl=http: //mirrors .163.com /centos/6 .9 /os/ $basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
gpgcheck=1
gpgkey=http: //mirror .centos.org /centos/RPM-GPG-KEY-CentOS-6
#released updates
[updates]
name=CentOS-$releasever - Updates - 163.com
baseurl=http: //mirrors .163.com /centos/6 .9 /updates/ $basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=http: //mirror .centos.org /centos/RPM-GPG-KEY-CentOS-6
#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras - 163.com
baseurl=http: //mirrors .163.com /centos/6 .9 /extras/ $basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=http: //mirror .centos.org /centos/RPM-GPG-KEY-CentOS-6
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus - 163.com
baseurl=http: //mirrors .163.com /centos/6 .9 /centosplus/ $basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=http: //mirror .centos.org /centos/RPM-GPG-KEY-CentOS-6
#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib - 163.com
baseurl=http: //mirrors .163.com /centos/6 .9 /contrib/ $basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
gpgcheck=1
enabled=0
gpgkey=http: //mirror .centos.org /centos/RPM-GPG-KEY-CentOS-6



8、清理并重建缓存

1
2
yum clean all
yum makecache fast


9、更换完毕。




本文转自 喵来个鱼 51CTO博客,原文链接:http://blog.51cto.com/m51cto/1964876,如需转载请自行联系原作者
相关文章
|
存储
更换阿里云的yum源
更换阿里云的yum源
2257 0
|
8月前
|
缓存
详解CentOS8更换yum源后出现同步仓库缓存失败的问题
详解CentOS8更换yum源后出现同步仓库缓存失败的问题
403 0
|
缓存 开发工具
RedHat8.4配置本地yum软件仓库(RHEL8.4)
RedHat8.4配置本地yum软件仓库(RHEL8.4)
1769 0
RedHat8.4配置本地yum软件仓库(RHEL8.4)
|
缓存 Java
centos6更换yum源报错的解决方案
centos6更换yum源报错的解决方案
1429 0
|
存储 缓存 Linux
Linux RedHat7.4更换阿里云yum源(RHEL7.4)
Linux RedHat7.4更换阿里云yum源(RHEL7.4)
4065 0
|
Linux 开发工具
Redhat7.x 修改阿里云yum源
redhat系统中,如果你想要更新yum仓库,它会提示让你注册才能更新,因为centos和redhat基本相同,所以我把yum这一套全换成centos的。
5582 1
|
缓存 Linux
初学环境一:CentOS7更换国内yum源
初学环境一:CentOS7更换国内yum源
3118 0
|
8月前
|
Linux 开发工具 开发者
RHEL更换yum源为CentOS7
RHEL在未注册时是无法使用yum的。如果使用yum命令,会报 “This system is not registered with an entitlement server. You can use subscription-manager to register.” 错误。在这种情况下,使用者就需要购买RetHat的服务。对于个人开发者,也可以通过更换yum源的方法来继续使用,本篇文章将介绍如何更新RHEL的yum源为阿里的CentOS7镜像。
845 0
|
8月前
|
缓存 Linux
centos7更换yum源 一条命令搞定
centos7更换yum源 一条命令搞定
1137 0
|
缓存 Linux
Centos7 更换yum源
备份原来的源 下载阿里源 更改阿里yum源为默认源
5678 1

推荐镜像

更多