学Linux时因为要用yum来下软件,但是一开始我就出现了一种和莫名奇妙的问题,但是上网找解决方案也没有很好的解决,但是最后幸好解决了问题,所以发个贴来帮助以后也遇到同样问题的朋友们
我的错误一开始是出现了这段文字
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 未知的错误"
One of the configured repositories failed (未知), and yum doesn't have enough cached data to continue.
但是通过逐一排查网络连接和网卡的问题,都没有解决,所以把源头定在了yum源的问题上面。
所以我首先删除了yum原文件夹里面的所有资源
rm -f /etc/yum.repos.d/*
接着就是从仓库里面下载资源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
再就是清除缓存
yum clean all
再最后就是从更新yum了
yum update
最后就能够成功完成用yum来下载软件了