Linux(Centos 7)环境下安装wget,并且更换阿里云镜像
在CentOS 7环境下,您可以通过以下步骤安装wget并更换为阿里云的镜像源:
- 安装wget:
sudo yum install wget -y
- 备份当前的yum源配置文件:
sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
- 下载阿里云的CentOS 7源配置文件:
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
- 清理缓存并生成新的缓存:
sudo yum clean all
sudo yum makecache
现在wget应该已经安装,且yum源已更换为阿里云镜像。
评论已关闭