I run the command sudo apt-get update && sudo apt-get install -y libnss3-dev
on a circleci/python:3.6.4
Docker image.
Today I am receiving this:
Get:5 http://deb.debian.org jessie/main amd64 Packages [9098 kB]
Err http://deb.debian.org jessie-updates/main amd64 Packages
100% [5 Packages 9064 kB]Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
404 Not Found
100% [5 Packages 9098 kB]Fetched 10.1 MB in 40s (247 kB/s)
W: Failed to fetch http://deb.debian.org/debian/dists/jessie-updates/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
Is there an outage I should be aware of, or do I need to change something?
Same here, we’ve been more than 12 hours and unable to pass CI due to the outage.
When I navigate to http://http.us.debian.org/debian/dists/jessie/
I see that there is no jessie-backports
dir (where I’m getting one of the 404s). What happened?
#!/bin/bash -eo pipefail
sudo apt-get update
sudo apt-get install libicu52 lua5.1 liblua5.1-0
Ign http://http.us.debian.org jessie-backports InRelease
Ign http://http.us.debian.org jessie-backports Release.gpg
Ign http://http.us.debian.org jessie-backports Release
Get:1 http://security.debian.org jessie/updates InRelease [44.9 kB]
Ign http://deb.debian.org jessie InRelease
Err http://http.us.debian.org jessie-backports/main Sources
404 Not Found [IP: 208.80.154.15 80]
Err http://http.us.debian.org jessie-backports/main amd64 Packages
404 Not Found [IP: 208.80.154.15 80]
Ign http://deb.debian.org jessie-updates InRelease
Get:2 http://security.debian.org jessie/updates/main amd64 Packages [822 kB]
Hit http://deb.debian.org jessie Release.gpg
Ign http://deb.debian.org jessie-updates Release.gpg
Hit http://deb.debian.org jessie Release
Ign http://deb.debian.org jessie-updates Release
Get:3 http://deb.debian.org jessie/main amd64 Packages [9098 kB]
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
404 Not Found
Fetched 9965 kB in 1s (6464 kB/s)
W: Failed to fetch http://http.us.debian.org/debian/dists/jessie-backports/main/source/Sources 404 Not Found [IP: 208.80.154.15 80]
W: Failed to fetch http://http.us.debian.org/debian/dists/jessie-backports/main/binary-amd64/Packages 404 Not Found [IP: 208.80.154.15 80]
W: Failed to fetch http://deb.debian.org/debian/dists/jessie-updates/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
Exited with code 100
Hey everyone. We are discussing what happened over here: Apt-get update return 404
An upstream change has temporarily broken some things. We have a PR to fix it ASAP. In the meantime you may run:
- run: |
sudo rm /etc/apt/sources.list
echo "deb http://archive.debian.org/debian/ jessie-backports main" | sudo tee -a /etc/apt/sources.list
echo "deb-src http://archive.debian.org/debian/ jessie-backports main" | sudo tee -a /etc/apt/sources.list
echo "Acquire::Check-Valid-Until false;" | sudo tee -a /etc/apt/apt.conf.d/10-nocheckvalid
echo 'Package: *\nPin: origin "archive.debian.org"\nPin-Priority: 500' | sudo tee -a /etc/apt/preferences.d/10-archive-pin
sudo apt-get update
1 Like