标签:centos更换yum源
[1] 首先备份/etc/yum.repos.d/CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
[2] 进入yum源配置文件所在文件夹
[root@localhost yum.repos.d]# cd /etc/yum.repos.d/
[3] 下载163的yum源配置文件,放入/etc/yum.repos.d/(操作前请做好相应备份)
[root@localhost yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
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)
[4] 运行yum makecache生成缓存
[root@localhost yum.repos.d]# yum makecache
[5] 更新系统
[root@localhost yum.repos.d]# yum -y update
[6] 安装vim编辑器
[root@localhost ~]# yum -y install vim*
FAQ:
可以通过强制关掉yum进程:
rm -f /var/run/yum.pid 在CentOS 7下更改yum源与更新系统。 [1] 首先备份/etc/yum.repos.d/CentOS-Base.repo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup [2] 进入yum源配置文件所在文件夹 [root@localhost yum.repos.d]# cd /etc/yum.repos.d/ [3] 下载163的yum源配置文件,放入/etc/yum.repos.d/(操作前请做好相应备份) [root@localhost yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo [4] 运行yum makecache生成缓存 [root@localhost yum.repos.d]# yum makecache [5] 更新系统(时间比较久,主要看个人网速) [root@localhost yum.repos.d]# yum -y update [6] 安装vim编辑器 [root@localhost ~]# yum -y install vim* Linux(CentOS7.1)修改默认yum源为国内的阿里云yum源 官方的yum源在国内访问效果不佳。 需要改为国内比较好的阿里云或者网易的yum源 修改方式: 下载wgetyum install wget -yecho 备份当前的yum源mv /etc/yum.repos.d /etc/yum.repos.d.backup4comexecho 新建空的yum源设置目录mkdir /etc/yum.repos.decho 下载阿里云的yum源配置wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 然后重建缓存: yum clean allyum makecache
标签:centos更换yum源
原文地址:http://blog.51cto.com/xiaogongju/2086328