没有weget,centos7更换阿里yum源
时间: 2024-09-28 10:06:11 浏览: 46
如果你在 CentOS 7 中想要更换阿里云的 YUM 源,因为默认的 YUM 源中可能没有 `wget` 包,你可以按照以下步骤操作:
1. **关闭系统自动更新**:
```
sudo yum-config-manager --disable updates
```
2. **安装新的基础镜像**(比如 EPEL 和 Aliyun Yum):
```
sudo yum install epel-release -y
sudo curl https://mirrors.aliyun.com/yum/repo/CentOS-Base.repo -o /etc/yum.repos.d/CentOS-Base-aliyun.repo
sudo curl https://mirrors.aliyun.com/yum/repo/epel-release.rpm -o /tmp/epel-release.rpm
sudo rpm -ivh /tmp/epel-release.rpm
```
3. **启用新的阿里云 YUM 源**:
```
sudo yum makecache fast
```
4. **验证YUM源是否有效**:
```
sudo yum search wget
```
如果能搜索到 `wget` 或其他需要的软件包,则说明新源已配置成功。
5. **安装 wget**:
```
sudo yum install wget -y
```
6. **恢复自动更新**(如果之前禁用了):
```
sudo yum-config-manager --enable updates
```
现在你的 CentOS 7 已经切换到了阿里云的 YUM 源,并且有了 `wget`。
阅读全文