共计 889 个字符,预计需要花费 3 分钟才能阅读完成。
拉取了一个阿里云镜像后,应用 yum 时呈现“Could not resolve host: mirrors.cloud.aliyuncs.com”谬误,解决办法如下:
1、我的镜像是 linux 版本是 8,改变上会比 7 有所区别。
2、cd /etc/yum.repos.d/, 能够看到如下内容:
CentOS-Linux-AppStream.repo CentOS-Linux-FastTrack.repo
CentOS-Linux-BaseOS.repo CentOS-Linux-HighAvailability.repo
CentOS-Linux-ContinuousRelease.repo CentOS-Linux-Media.repo
CentOS-Linux-Debuginfo.repo CentOS-Linux-Plus.repo
CentOS-Linux-Devel.repo CentOS-Linux-PowerTools.repo
CentOS-Linux-epel.repo CentOS-Linux-Sources.repo
CentOS-Linux-Extras.repo nginx.repo
此时须要批改
CentOS-Linux-AppStream.repo、CentOS-Linux-BaseOS.repo、CentOS-Linux-epel.repo、CentOS-Linux-Extras.repo
四项内容中的 yum 源,将文件中所有的“http://mirrors.cloud.aliyuncs…”,改为“http://mirrors.aliyun.com”,如
baseurl=http://mirrors.aliyun.com/$contentdir/$releasever/BaseOS/$basearch/os/
/ 前面内容不要动,否则前期还会报错。
Linux8 之前的应该没有“CentOS-Linux-AppStream.repo”文件,其余的名称应该也有区别,但不难找到。
3、改变之后执行两个命令:yum clean all
yum makecache
之后执行 yum 命令应该就能够了。
正文完