彻底解决centos8下载元数据失败,安装源失败

时间:2024-12-20 07:10:41

大家可能都发现了centos8已经不在更新了。当我们使用yum安装某些工具的时候,会提示安装源失败。错误消息如下

  1. [root@product016 ~]# yum -y install gcc automake autoconf libtool make
  2. CentOS Linux 8 - AppStream                                                                                                    7.5 kB/s | 2.3 kB     00:00    
  3. Errors during downloading metadata for repository 'appstream':
  4.   - Status code: 404 for http:///centos/8/AppStream/x86_64/os/repodata/ (IP: 100.100.2.148)
  5. 错误:为 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-和和

  1. [root@product016 ~]# cd /etc//
  2. [root@product016 ]# ls
  1. vim /etc// 回车
  2. 然后按下i键,修改baseurl为下面的地址
  3. https:///centos/8-stream/BaseOS/x86_64/os/
  4. 然后按esc键,然后输入:wq回车
  5. 内容大概如下
  6. [AppStream]
  7. name=CentOS-8 - AppStream
  8. release=$releasever&arch=$basearch&repo=AppStream&infra=$infra
  9. baseurl=https:///centos/8-stream/BaseOS/x86_64/os/
  10. gpgcheck=1
  11. enabled=1
  12. gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

同样的操作还需要操作下面的几个文件

  1. vim /etc//
  2. vim /etc//

同样的操作把上面的3个文件都修改完,然后再执行您的yum命令就可以了。

如果还有问题或不会操作的请及时留言。