web-dev-qa-db-ja.com

リポジトリ情報のダウンロードに失敗しました。エラー?

私はここでは新人です。 Ubuntuをインストールしたばかりで、とてもうれしいです。 Ubuntu Software Centerからプログラムをインストールしようとしました。 「「宇宙」ソースから入手可能」とありました。そこで、「このソースを使用」をクリックしました。そのため、ダウンロードが開始されました。しかし、私には問題があります。少し後、エラーが発生します。 「リポジトリ情報をダウンロードできませんでした。インターネット接続を確認してください」と表示されます。私はとても混乱していました。

エラーの詳細は次のとおりです。

    W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/main/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/restricted/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/universe/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/multiverse/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/main/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/restricted/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/universe/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring/multiverse/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/main/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/restricted/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/universe/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/multiverse/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/main/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/restricted/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/universe/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-updates/multiverse/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/main/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/restricted/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/universe/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/multiverse/source/Sources  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/main/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/restricted/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/universe/binary-i386/Packages  404  Not Found
, W:Failed to fetch http://pk.archive.ubuntu.com/ubuntu/dists/raring-backports/multiverse/binary-i386/Packages  404  Not Found
, E:Some index files failed to download. They have been ignored, or old ones used instead.

助けてください? :(

2つのプログラムをインストールしようとしています。

4
Hamza Shahzad

まず、ターミナルから次のコマンドを試してください。

apt-get autoclean
apt-get clean
apt-get autoremove

システム設定を開きます(ターミナルから入力できます:)

gnome-control-center

Software Sourcesをクリックし、Ubuntu Softwareタブの下で、すべてのものがチェックされ、Download from:リストコントロールをMain Serverに変更します。
これで、アプリのダウンロードをもう一度試すことができます。 (これは以前私のために働きました!まれに、再起動が役立つ場合があります。)

3
Python Student

nano /etc/apt/sources.listを開くだけです

すべての「pk」を「us」に置き換えます

1
herman

インターネットへの接続がないようです。これはさまざまな理由で発生する可能性があります。理由の1つは、プロキシサーバーの背後にいることです。 Ubuntuがさまざまなツール(apt-getを含む)のプロキシ設定を構成するためのガイドは、 このWebサイトで にあります。

また、pk.archive.ubuntu.comが完全ではないことにも気付きました。 en.archive.ubuntu.comには、pkミラーで見つからなかったファイルが含まれています。 /etc/apt/sources.listファイルを編集して、enバリアントに変更することを検討してください。変更する前にapt-getとsources.listファイルについて少し読んで、変更する前に必ずバックアップを作成することを検討することをお勧めします。

0
phulstaert