web-dev-qa-db-ja.com

Ubuntu 17.04でsudo apt-get更新が失敗する

Ubuntu 17.04 Zesty ZapusでSudo apt-get updateを実行しているときに、次のエラーが表示されます。エラー行に投稿しました。上記のコマンドが正常に実行されなかったためにインストールに失敗したmatplotlibやtkinterのようなライブラリをインストールしたかったpython。

Err:9 http://security.ubuntu.com/ubuntu zesty-security/main AMD64 Packages
  404  Not Found [IP: 2001:67c:1560:8001::14 80]
Err:25 http://in.archive.ubuntu.com/ubuntu zesty/main i386 Packages
  404  Not Found [IP: 2001:67c:1360:8001::21 80]
Err:81 http://in.archive.ubuntu.com/ubuntu zesty-updates/main AMD64 Packages
  404  Not Found [IP: 2001:67c:1360:8001::21 80]
Err:113 http://in.archive.ubuntu.com/ubuntu zesty-backports/main AMD64 Packages
  404  Not Found [IP: 2001:67c:1360:8001::21 80]
Reading package lists... Done
W: The repository 'http://security.ubuntu.com/ubuntu zesty-security Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://in.archive.ubuntu.com/ubuntu zesty Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://in.archive.ubuntu.com/ubuntu zesty-updates Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://in.archive.ubuntu.com/ubuntu zesty-backports Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://security.ubuntu.com/ubuntu/dists/zesty-security/main/binary-AMD64/Packages  404  Not Found [IP: 2001:67c:1560:8001::14 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/zesty/main/binary-i386/Packages  404  Not Found [IP: 2001:67c:1360:8001::21 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/zesty-updates/main/binary-AMD64/Packages  404  Not Found [IP: 2001:67c:1360:8001::21 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/zesty-backports/main/binary-AMD64/Packages  404  Not Found [IP: 2001:67c:1360:8001::21 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.
7
Ayush Kumar

17.04は、Ubuntuからさらにサポートを受けていません。だから、私のために働いたソリューションは、他のソリューションが役に立たなかったので、17.10にアップグレードすることでした。

0
Ayush Kumar

/ etc/apt/sources.listのus.archive.ubuntu.comとsecurity.ubuntu.comをold-releases.ubuntu.comに置き換えるだけで解決できます。 '更新を完了することができます。

ソース1 および buntuフォーラム を参照してください

それは私のために働く

私の場合:

sed -e 's/archive.ubuntu.com/old-releases.ubuntu.com/g' -i /etc/apt/sources.list 
sed -e 's/security.ubuntu.com/old-releases.ubuntu.com/g' -i /etc/apt/sources.list 
7
Sergey Pavlov

私の場合、次の操作を行うことでいくつかのパッケージをダウンロードできました。

/etc/apt/sources.list内の「us.archive.ubuntu.com」と「security.ubuntu.com」を「old-releases.ubuntu.com」に置き換える必要があり、その後いくつかのダウンロードを完了することができました。 Ayush Kumarが言ったように、パッケージ。

私のホスティング会社であるLinodeがリストした他のアップデートについては、以下を使用しました。

Sudo apt-get updateで--allow-unauthenticatedフラグを使用する必要がありました。

Sudo apt-get update --allow-unauthenticated

その後、更新を完了することができました。

2
luminol