Apt-Get Update がファイルの取得に失敗し、「一時的な障害を解決しています...」エラーが発生しました!


適切な


Err http://archive.canonical.com natty InRelease    
Err http://security.ubuntu.com oneiric-security InRelease               
Err http://extras.ubuntu.com natty InRelease                            
Err http://security.ubuntu.com oneiric-security Release.gpg
  Temporary failure resolving ‘security.ubuntu.com’
Err http://archive.canonical.com natty Release.gpg
  Temporary failure resolving ‘archive.canonical.com’
Err http://extras.ubuntu.com natty Release.gpg
  Temporary failure resolving ‘extras.ubuntu.com’
Err http://gb.archive.ubuntu.com oneiric InRelease
Err http://gb.archive.ubuntu.com oneiric-updates InRelease
Err http://gb.archive.ubuntu.com natty-backports InRelease
Err http://gb.archive.ubuntu.com oneiric Release.gpg
  Temporary failure resolving ‘gb.archive.ubuntu.com’
Err http://gb.archive.ubuntu.com oneiric-updates Release.gpg
  Temporary failure resolving ‘gb.archive.ubuntu.com’
Err http://gb.archive.ubuntu.com natty-backports Release.gpg
  Temporary failure resolving ‘gb.archive.ubuntu.com’

Reading package lists... Done
W: Failed to fetch http://gb.archive.ubuntu.com/ubuntu/dists/oneiric/InRelease      
W: Failed to fetch http://gb.archive.ubuntu.com/ubuntu/dists/oneiric-updates/InRelease  
W: Failed to fetch http://gb.archive.ubuntu.com/ubuntu/dists/natty-backports/InRelease  
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/oneiric-security/InRelease  
W: Failed to fetch http://archive.canonical.com/ubuntu/dists/natty/InRelease  
W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/natty/InRelease  
W: Failed to fetch http://archive.canonical.com/ubuntu/dists/natty/Release.gpg Temporary failure resolving ‘archive.canonical.com’
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/oneiric-security/Release.gpg Temporary failure resolving ‘security.ubuntu.com’
W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/natty/Release.gpg Temporary failure resolving ‘extras.ubuntu.com’
W: Failed to fetch http://gb.archive.ubuntu.com/ubuntu/dists/oneiric/Release.gpg Temporary failure resolving ‘gb.archive.ubuntu.com’
W: Failed to fetch http://gb.archive.ubuntu.com/ubuntu/dists/oneiric-updates/Release.gpg Temporary failure resolving ‘gb.archive.ubuntu.com’
W: Failed to fetch http://gb.archive.ubuntu.com/ubuntu/dists/natty-backports/Release.gpg Temporary failure resolving ‘gb.archive.ubuntu.com’
W: Some index files failed to download. They have been ignored, or old ones used instead.



これは、 sudo apt-get update を実行しようとしたときに表示されるものです.昨日インスタンスを更新しましたが、現在これが発生しています.

受け入れられた回答



概要



あなたの質問には2つの部分があります:
  • 一時解決メッセージの修正
  • パッケージ管理の問題の修正

  • 仮解決



    この問題は次のいずれかである可能性があります.
  • インターネット サービス プロバイダーがインターネット ネーミング (DNS) を自社または外部の DNS サーバーに正しく転送していないために発生する一時的なエラー、または
  • ネットワークの変更により、同様にこの命名がブロックされました.たとえば、新しいルーター/モデム、新しい構成でのスイッチの再構成などです.

  • 考えられる DNS 解決の問題を見てみましょう.

    最初に、既知の DNS サーバーを一時的にシステムに追加します.

    echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf > /dev/null
    
    


    次に、 sudo apt-get update を実行します.

    これで一時的な解決メッセージが修正された場合は、ISP が問題を修正するかどうかを確認するために 24 時間待つ (または単に ISP に連絡する) か、DNS サーバーをシステムに永続的に追加することができます.

    echo "nameserver 8.8.8.8" | sudo tee /etc/resolvconf/resolv.conf.d/base > /dev/null
    
    

    8.8.8.8 は Google 独自の DNS サーバーです.

    source

    使用できる別の DNS サーバーの例は OpenDNS です.例:

    echo "nameserver 208.67.222.222" | sudo tee /etc/resolvconf/resolv.conf.d/base > /dev/null
    
    


    パッケージ管理の問題



    一時的な解決の問題に加えて、修正が必要なパッケージ管理の問題がいくつかあります.最近、あるUbuntuバージョンから次の推奨バージョンにアップグレードしようとしたと思います.あなたの場合、Natty(11.04)からオネイリック (11.10)

    ターミナルを開いて入力します

    sudo nano /etc/apt/sources.list
    
    


    予想とは異なるディストリビューション名がリストに含まれている行を探します.この場合、oneiric にアップグレードしましたが、別のリリース名 natty があります.

    たとえば、deb http:/archive.canonical.com/ natty backports のような行を探します.

    行頭に # を追加してコメントアウトします.たとえば、
    #deb http:/archive.canonical.com/ natty backports
    保存して再実行:

    sudo apt-get update && sudo apt-get upgrade
    
    


    リリースの命名エラーはこれ以上ないはずです.

    これを書いている時点で、可能な一般的なrelease namesには、lucidmavericknattyoneiricprecisequantalraringsaucytrustyutopic.

    投稿 Apt-Get Update Fails to Fetch Files, “Temporary Failure Resolving …” Error!Stack All Flow に最初に表示されました.