无法读取repomd.xml

无法读取repomd.xml

我正在尝试在未连接到 Internet 的服务器上从 RHEL-8 安装 DVD 安装其他软件包。我将 DVD ISO 安装在/mnt/cdrom.我的文件中有以下内容/etc/yum.repos.d/baseos.repo

[baseos]
name=BaseOs_Repository
baseurl=file:///mnt/cdrom/BaseOs
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

当我尝试安装软件包时,出现以下错误:

Errors during downloading metadata for repository 'baseos':
  - Curl error (37): Couldn't read a file:// file for file:///mnt/cdrom/BaseOs/repodata/repomd.xml [Couldn't open file /mnt/cdrom/BaseOs/repodata/repomd.xml]
Error: Failed to download metadata for repo 'baseos': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried

该文件存在并且具有正确的权限:

[root@ngsv8 repodata]# ls -lh /mnt/cdrom/BaseOS/repodata/
total 3.1M
-r--r--r--. 1 root root  75K Oct 13  2021 059387f37531102607f15430a20c0a02737d3917295288657c3dc2bf3b4d3388-comps-BaseOS.x86_64.xml.gz
-r--r--r--. 1 root root 1.3M Oct 13  2021 605f660b7c02389f9dc05b018bed8a414cc6f354eb0748aa55efc31c9e4c2298-filelists.xml.gz
-r--r--r--. 1 root root 1.1M Oct 13  2021 650308603c7c00e2f2265686d472750875
51b6326e7a1077d93f3f317e0e8cce-primary.xml.gz
-r--r--r--. 1 root root 444K Oct 13  2021 67ea1c69bf2d3ff30e0aa59fd2ccd7890decdf1f4fb6acb305f9e027551fd00f-other.xml.gz
-r--r--r--. 1 root root 301K Oct 13  2021 7a3932d707bf3b84d0cccbe2a5382ad04613ef4e2308a95aef2c16e999702119-comps-BaseOS.x86_64.xml
-r--r--r--. 1 root root 1.6K Oct 13  2021 ee6f2ed466e70c8ee4dd48d8aa3897707349e31e3f546a82e121cc53cc82d8a8-productid.gz
-r--r--r--. 1 root root 2.2K Oct 13  2021 productid
-r--r--r--. 1 root root 2.8K Oct 13  2021 repomd.xml
-r--r--r--. 1 root root 2.2K Oct 13  2021 TRANS.TBL

.repo在安装 DVD 的子目录中有一个类似的文件AppStream/,它似乎可以工作,因为它没有发出任何错误消息。我尝试复制到appstream.repo并将baseos.repo所有引用更改为appstream以防baseos万一我有一个我没有看到的拼写错误。

答案1

你有一个错字 - BaseOsvs BaseOS。修复您的存储库文件以匹配 DVD 文件系统。

这是您的错误消息:

Couldn't open file /mnt/cdrom/BaseOs/repodata/repomd.xml

这是ls命令:

ls -lh /mnt/cdrom/BaseOS/repodata/

相关内容