centos8中的centos-stream-base.repo更新为ali源
时间: 2023-08-29 08:05:14 浏览: 614
CentOS-Base.repo,centos6可用源
3星 · 编辑精心推荐
您可以按照以下步骤将CentOS Stream的base repo更新为阿里云镜像源:
1. 打开终端并以 root 身份登录。
2. 进入 /etc/yum.repos.d 目录:
```
cd /etc/yum.repos.d
```
3. 备份当前的 CentOS-Stream-Base.repo 文件:
```
cp CentOS-Stream-Base.repo CentOS-Stream-Base.repo.backup
```
4. 使用以下命令下载新的 CentOS-Stream-Base.repo 文件:
```
curl -o CentOS-Stream-Base.repo http://mirrors.aliyun.com/repo/Centos-8-stream.repo
```
5. 使用文本编辑器打开 CentOS-Stream-Base.repo 文件:
```
vi CentOS-Stream-Base.repo
```
6. 将文件中所有的 $releasever 替换为 8-stream,保存并退出。
7. 运行以下命令清除缓存并重新生成元数据:
```
yum clean all
yum makecache
```
现在您的 CentOS 8 Stream 系统的 base repo 已经更新为阿里云镜像源了。
阅读全文