centos7安装阿里镜像源
时间: 2023-11-22 14:06:15 浏览: 78
centosOS7-镜像
以下是两种在CentOS 7上安装阿里镜像源的方法:
1. 手动配置阿里云源
- 备份官方的原yum源的配置
```shell
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
```
- 下载CentOS-7.repo文件
```shell
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/CentOS-7.repo
```
如果没有wget的命令,可使用curl代替wget,执行如下语句代替:
```shell
curl -o/etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/CentOS-7.repo
```
- 清除生成的缓存
```shell
yum clean all
yum makecache
```
2. 使用wget命令安装
```shell
wget -O /etc/yum.repos.d/Centos-7.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
阅读全文