2

は fedoramagzine.org でこの記事を読み 、プロセスに従いました。それ以来、yum と dnf の両方から更新、インストールなどを実行できません。

これは私がDNFから得るエラーです

Abhinav@localhost ~$ sudo dnf update
[sudo] Abhinav のパスワード:エラー: ' https://mirrors.fedoraproject.org/metalink?repo=fedora-21&arch=x86_64
' からリポジトリ 'fedora' のキャッシュを同期できませんでした: できません内部ミラーリストの準備: Curl エラー: https://mirrors.fedoraproject.org/metalink?repo=fedora-21&arch=x86_64のタイムアウトに達しました [120002 ミリ秒後に接続がタイムアウトしました]

これは、YUMを使用したときに発生するエラーです

Abhinav@localhost ~$ sudo yum update 読み込まれたプラグイン: langpacks
構成されたリポジトリの 1 つが失敗し (Fedora 21 - x86_64)、yum に続行するのに十分なキャッシュ データがありません。この時点で yum ができる唯一の安全なことは、失敗することです。これを「修正」するには、いくつかの方法があります。

 1. Contact the upstream for the repository and get them to fix the problem.

 2. Reconfigure the baseurl/etc. for the repository, to point to a working
    upstream. This is most often useful if you are using a newer
    distribution release than is supported by the repository (and the
    packages for the previous distribution release still work).

 3. Disable the repository, so yum won't use it by default. Yum will then
    just ignore the repository until you permanently enable it again or use
    --enablerepo for temporary usage:

        yum-config-manager --disable fedora

 4. Configure the failing repository to be skipped, if it is unavailable.
    Note that yum will try to contact the repo. when it runs most commands,
    so will have to try and fail each time (and thus. yum will be be much
    slower). If it is a very temporary problem though, this is often a nice
    compromise:

        yum-config-manager --save --setopt=fedora.skip_if_unavailable=true

リポジトリのメタリンクを取得できません: fedora/21/x86_64。パスを確認して、もう一度お試しください

/etc/yum.repos.dディストリビューションをインストールしたときに取得した元の 3 つのリポジトリを除いて、すべてのリポジトリを空にしました。

UPDATE ::
@Etan Reisner の出力は次のとおりですrpm -qa nss\*

 Abhinav@localhost ~$ rpm -qa nss\*
 nss-softokn-freebl-3.17.3-1.fc21.x86_64
 nss-util-devel-3.17.3-1.fc21.x86_64 nss-sysinit-3.17.3-2.fc21.x86_64
 nss-util-3.17.3-1.fc21.x86_64 nss-tools-3.17.3-2.fc21.x86_64
 nss-softokn-freebl-3.17.3-1.fc21.i686 nss-3.17.3-2.fc21.x86_64
 nss-softokn-freebl-devel-3.17.3-1.fc21.x86_64
 nss-mdns-0.10-15.fc21.x86_64 nss-mdns-0.10-15.fc21.i686
 nss-util-3.17.3-1.fc21.i686 nss-softokn-3.17.3-1.fc21.i686
 nss-devel-3.17.3-2.fc21.x86_64 nss-softokn-devel-3.17.3-1.fc21.x86_64
 nss-3.17.3-2.fc21.i686 nss-softokn-3.17.3-1.fc21.x86_64

更新 2

ラップトップをフォーマットし、Fedora 21 を再インストールしsudo dnf updatesました。私は再びこの問題に悩まされています。今回は、前回の記事の手順には従いませんでした。

さらにGoogle検索で、同じエラーについて話しているhttps://fedorahosted.org/fedora-infrastructure/ticket/4517を見つけました。閉じられていますが、適切な解決策が再び見つかりません。

4

2 に答える 2

1

プロキシの背後にいる場合は、それに応じて dnf を構成する必要があります。(ユーザーのプロキシ設定に問題がない場合でも、いずれにしても dnf 用に設定する必要があります。) dnf 設定は /etc/dnf/dnf.conf に保存されます。構文は次のとおりです
。proxy=<プロトコル>://<IPまたは名前>:<ポート>

これが問題でない場合は、ブラウザーでメタデータをダウンロードして、URL へのネットワーク接続が機能していることを確認してください。
受け取るファイルはxmlファイルである必要があります。ブラウザー経由でメタデータをダウンロードできない場合は、ポート 443 (https 用) がブロックされているか、インターネット接続に問題がある可能性があります。

于 2015-09-29T12:11:48.680 に答える