web-dev-qa-db-ja.com

apt-get updateがdebian lennyで404を取得

これが私の/etc/apt/sources.list

###### Debian Main Repos
deb http://ftp.us.debian.org/debian/ lenny main contrib non-free

###### Debian Update Repos
deb http://security.debian.org/ lenny/updates main contrib non-free
deb http://ftp.us.debian.org/debian/ lenny-proposed-updates main contrib non-free

私がする時:

# apt-get update

私はいくつかの良いラインを得ています、そして:

Err http://ftp.us.debian.org lenny/contrib Packages
  404 Not Found [IP: 35.9.37.225 80]
Err http://ftp.us.debian.org lenny/non-free Packages
  404 Not Found [IP: 35.9.37.225 80]
Err http://ftp.us.debian.org lenny-proposed-updates/main Packages
  404 Not Found [IP: 35.9.37.225 80]
Err http://ftp.us.debian.org lenny-proposed-updates/contrib Packages
  404 Not Found [IP: 35.9.37.225 80]
Err http://ftp.us.debian.org lenny-proposed-updates/non-free Packages
  404 Not Found [IP: 35.9.37.225 80]
Err http://ftp.us.debian.org lenny/main Packages
  404 Not Found [IP: 35.9.37.225 80]
W: Failed to fetch http://security.debian.org/dists/lenny/updates/main/binary-i386/Packages  404 Not Found [IP: 149.20.20.6 80]    
W: Failed to fetch http://security.debian.org/dists/lenny/updates/contrib/binary-i386/Packages  404 Not Found [IP: 149.20.20.6 80]    
W: Failed to fetch http://security.debian.org/dists/lenny/updates/non-free/binary-i386/Packages  404 Not Found [IP: 149.20.20.6 80]    
W: Failed to fetch http://ftp.us.debian.org/debian/dists/lenny/contrib/binary-i386/Packages  404 Not Found [IP: 35.9.37.225 80]    
W: Failed to fetch http://ftp.us.debian.org/debian/dists/lenny/non-free/binary-i386/Packages  404 Not Found [IP: 35.9.37.225 80]    
W: Failed to fetch http://ftp.us.debian.org/debian/dists/lenny-proposed-updates/main/binary-i386/Packages  404 Not Found [IP: 35.9.37.225 80]    
W: Failed to fetch http://ftp.us.debian.org/debian/dists/lenny-proposed-updates/contrib/binary-i386/Packages  404 Not Found [IP: 35.9.37.225 80]    
W: Failed to fetch http://ftp.us.debian.org/debian/dists/lenny-proposed-updates/non-free/binary-i386/Packages  404 Not Found [IP: 35.9.37.225 80]    
W: Failed to fetch http://ftp.us.debian.org/debian/dists/lenny/main/binary-i386/Packages  404 Not Found [IP: 35.9.37.225 80]    
E: Some index files failed to download, they have been ignored, or old ones used instead.
23
JoelFan

少し突っ込んでみると、Debianミラーに問題があるようです。ミラー情報によると、lennyは使用できるはずですが、/etc/apt/sources.listで 'lenny'の各インスタンスを 'oldstable'に変更する必要がある場合があります。ただし、3つのミラーをプルアップすると、「lenny」と「oldstable」はリストに表示されなくなります。

更新:私はもう少し突っ込んでみましたが、 SCミラー にはまだ「lenny」がリストされているようです。 sources.listの既存のエントリをコメント化し、次のように複製します。

deb http://ftp.us.debian.org/debian/

交換された:

deb ftp://mirrors.usc.edu/pub/linux/distributions/debian/

それがうまくいくかどうか見てください。

少し運が良ければ、これは一時的な問題であり、数日で解決します。

更新2:これは一時的なものではないようで、 http://archive.debian.org が最適な場所ですレニーのパッケージをプルする。また、Lennyのセキュリティサポートは2012年2月12日に終了したようですが、ポイントアップデートである5.0.10は2012年3月10日にリリースされました。

特にインターネット/パブリックサーバーの場合は、アップグレードを計画する価値があります。

14

/etc/apt/sources.list 次のように:

deb http://archive.debian.org/debian/ lenny main contrib non-free
deb-src http://archive.debian.org/debian/ lenny main contrib non-free

deb http://archive.debian.org/debian-security lenny/updates main contrib non-free
deb-src http://archive.debian.org/debian-security lenny/updates main contrib non-free

deb http://archive.debian.org/debian-volatile lenny/volatile main contrib non-free
deb-src http://archive.debian.org/debian-volatile lenny/volatile main contrib non-free
29
SebiF

Lennyパッケージはすべてのミラーから削除されました:archive.debian.orgソース。リストを次のように更新してください:deb http://archive.debian.org lenny main contrib

OK-それは私にはうまくいきませんでしたが、

 deb http://archive.debian.org/debian lenny main contrib

した

2
M. Waldorp-Bonk