当谈到在CentOS上无法安装wget时,
这次我将把无法安装命令时的对策作为备忘录记录下来。
想做的事情
因为CentOS没有安装wget,所以我想要安装它。
经过
当尝试安装时,出现以下错误
# yum install wget
YumRepo Error: All mirror URLs are not using ftp, http[s] or file
应对方法
以下是我使用sed命令从镜像列表中获取存储库并进行安装的成功方法。
# sed -i -e "s/^mirrorlist=http:\/\/mirrorlist.centos.org/#mirrorlist=http:\/\/mirrorlist.centos.org/g" /etc/yum.repos.d/CentOS-Base.repo
# sed -i -e "s/^#baseurl=http:\/\/mirror.centos.org/baseurl=http:\/\/vault.centos.org/g" /etc/yum.repos.d/CentOS-Base.repo
只要能对您有所帮助我就感到幸福。
请提供参考资料。