生成一个配置yum源的shell脚本
时间: 2023-11-03 19:52:57 浏览: 74
shell脚本自动创建本地yum源和配置阿里云及163的CentOS 5/6/7 yum源
好的,以下是一个简单的配置yum源的shell脚本:
```bash
#!/bin/bash
# 安装epel-release和yum-utils
yum install -y epel-release yum-utils
# 备份原有yum源配置文件
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
# 下载新的yum源配置文件
yum-config-manager --add-repo http://mirrors.aliyun.com/repo/Centos-7.repo
# 更新yum缓存
yum makecache
```
这个脚本首先安装了 `epel-release` 和 `yum-utils` 包,然后备份了原有的yum源配置文件,接着下载了阿里云的CentOS-7源的配置文件,并更新了yum缓存。你可以根据自己的需要修改源地址和文件名。
阅读全文