大家可能都发现了centos8已经不在更新了。当我们使用yum安装某些工具的时候,会提示安装源失败。错误消息如下
-
[root@product016 ~]# yum -y install gcc automake autoconf libtool make
-
CentOS Linux 8 - AppStream 7.5 kB/s | 2.3 kB 00:00
-
Errors during downloading metadata for repository 'appstream':
-
- Status code: 404 for http:///centos/8/AppStream/x86_64/os/repodata/ (IP: 100.100.2.148)
-
错误:为 repo 'appstream' 下载元数据失败 : Cannot download : Cannot download repodata/: All mirrors were tried
上面的错误,同样在使用VMware虚拟机安装centos8系统的时候,同样在安装界面出现安装源失败,无法安装导致不能下一步。
-------------------------------------------------------------------------------------------------------------------------------
下面给出正确的地址
https:///centos/8-stream/BaseOS/x86_64/os/
-------------------------------------------------------------------------------------------------------------------------------
在centos8里面,我们使用root用户登录后,操作如下。
跳转到/etc//文件夹下,可以看到有很多源,我们只要修改3个。
分别是CentOS-和和
-
[root@product016 ~]# cd /etc//
-
[root@product016 ]# ls
-
-
-
-
-
vim /etc// 回车
-
-
然后按下i键,修改baseurl为下面的地址
-
https:///centos/8-stream/BaseOS/x86_64/os/
-
-
然后按esc键,然后输入:wq回车
-
-
-
-
内容大概如下
-
[AppStream]
-
name=CentOS-8 - AppStream
-
release=$releasever&arch=$basearch&repo=AppStream&infra=$infra
-
baseurl=https:///centos/8-stream/BaseOS/x86_64/os/
-
gpgcheck=1
-
enabled=1
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial
同样的操作还需要操作下面的几个文件
-
vim /etc//
-
-
vim /etc//
同样的操作把上面的3个文件都修改完,然后再执行您的yum命令就可以了。
如果还有问题或不会操作的请及时留言。