하지만...

하지만...

Fedora 14 VM에 MySQL을 설치하려고 합니다. MySQL을 설치하려고 하면 다음 메시지가 나타납니다.

Error Downloading Packages:
zlib-devel-1.2.5-2.fc14.x86_64: failure: Packages/zlib-devel-1.2.5-2.fc14.x86_64.rpm from class-DVD: [Errno 256] No more mirrors to try.
libxml2-devel-2.7.7-2.fc14.x86_64: failure: Packages/libxml2-devel-2.7.7-2.fc14.x86_64.rpm from class-DVD: [Errno 256] No more mirrors to try.

저장소를 추가하려고 시도했고 다음과 같은 결과를 얻었습니다.

[root@dyan src]# yum install mysql mysql-server
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
file:///media/Fedora%2014%20x86_64%20DVD/repodata/repomd.xml: [Errno 14] Could not open/read file:///media/Fedora%2014%20x86_64%20DVD/repodata/repomd.xml
Trying other mirror.
http://download.fedora.redhat.com/pub/fedora/linux/core///os/repodata/repomd.xml: [Errno 14] PYCURL ERROR 6 - ""
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: download.fedora.redhat.com_pub_fedora_linux_core_os_. Please verify its path and try again

yum을 사용하여 설치할 수 있도록 yum.conf(또는 yum.repos.d에 추가할 적절한 저장소)를 수정하는 방법을 알려줄 수 있는 사람이 있습니까?

답변1

이런. 다음은 오류의 출력입니다.

http://download.fedora.redhat.com/pub/fedora/linux/core///os/repodata/repomd.xml
                                                       ^^^

이러한 빈 요소는 이것이 있을 수 있는 요소에 해당합니다.명확하지 않다쉘 변수:

yum-config-manager --add-repo \       
http://download.fedora.redhat.com/pub/fedora/linux/core/$releasever/$basearch/os‌​/
                                                        ^^^^^^^^^^^^^^^^^^^^^

나는 그것이 and or $releasever이어야 한다고 확신합니다 . 따라서 다음과 같아야 합니다:14$basearchi686x86_64

http://download.fedora.redhat.com/pub/fedora/linux/core/14/x86_64/os‌​/

이는 64비트 시스템을 사용하고 있다고 가정합니다( i686그렇지 않으면 해당 시스템 사용).

하지만...

전체 경로가 더 이상 작동하지 않을 수 있습니다.

yum-config-manager --add-repo http://archive.fedoraproject.org/pub/archive/fedora/linux/releases/14/‌​Fedora/x86_64/os/

그러나 댓글의 토론을 참조하십시오. 아마도 이전에 추가한 가짜 저장소도 삭제하고 싶을 것입니다.

관련 정보