CentOS6在使用yum install 时提示镜像源路径不存在:PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found

时间:2023-02-15 10:59:02


场景

CentOS6.9的版本在使用

yum install gcc-c++

安装C和C++的插件时提示:

PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found“

 

CentOS6在使用yum install 时提示镜像源路径不存在:PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found

注:

关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

一开始在使用yum安装插件时提示:

Loading mirror speeds from cached hostfile

Nothing to do

就是找不到镜像源,所以通过

cd /etc/yum.repos.d
mv CentOS-Base.repo CentOS-Base.repo.backup
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
mv CentOS6-Base-163.repo CentOS-Base.repo
yum clean all

以上的命令更换为163的数据源又报了上面的错误。

再执行以下命令

wget -O /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/repo/Centos-6.repo
wget -O /etc/yum.repos.d/epel.repo http://file.kangle.odata.cc/repo/epel-6.repo
yum makecache

就能使用yum命令了。

 

CentOS6在使用yum install 时提示镜像源路径不存在:PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found