wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo -bash: wget: 未找到命令
时间: 2023-08-15 20:09:07 浏览: 244
Centos7同步阿里yum仓库搭建yum私有仓库
你可以尝试使用以下命令来安装 wget 工具:
```shell
sudo yum install wget
```
然后再运行你的命令:
```shell
sudo wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
```
这将使用 wget 工具下载 epel.repo 文件并保存到指定路径。
阅读全文