Linux-更改CentOS的yum源
- 安装wget
[root@localhost ~]# yum -y install wget
下载三方源
# 以阿里云yum源为例
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# wget http://mirrors.aliyun.com/repo/Centos-7.repo
- 备份默认源,用三方源替换默认源
[root@localhost yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bak
[root@localhost yum.repos.d]# cp Centos-7.repo CentOS-Base.repo
[root@localhost yum.repos.d]# yum makecache
注意:一定要先保证安装好wget、并下载好三方源文件再进行重命名默认源,因为下载和安装时还是要依赖源的!
- 安装vim(可选)