Problem installing some updates get 404 error

Asked by Tim Mousseau

I am using Install Manager to install the following and I get a 404 error, when I enter the addresses as a URL in my browser I get a 404 as well,
What I am trying to install
Version of 'host bundled with BIND9.x
Cleints provided with BIND
Safe and easy web browser from Mozilla
...

What errors
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/dnsutils_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/bind9-host_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/libisc83_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/libdns81_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/libisccc80_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/libisccfg82_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/liblwres80_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/b/bind9/libbind9-80_9.8.1.dfsg.P1-4ubuntu0.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-globalmenu_13.0+build1-0ubuntu0.12.04.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_13.0+build1-0ubuntu0.12.04.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_13.0+build1-0ubuntu0.12.04.1_i386.deb 404 Not Found
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-locale-en_13.0+build1-0ubuntu0.12.04.1_i386.deb 404 Not Found

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu apt Edit question
Assignee:
No assignee Edit question
Solved by:
actionparsnip
Solved:
Last query:
Last reply:
Revision history for this message
FactTech (launchpad-facttechnologies) said :
#1

It appears that you are attempting to install an out-of-date version of the package. You can see that the updated versions are available by looking at:

   http://security.ubuntu.com/ubuntu/pool/main/b/bind9/

You may need to refresh the apt-get database. This can be done with the GUI or in a terminal windows using:

   sudo apt-get update

Revision history for this message
Best actionparsnip (andrew-woodhead666) said :
#2

sudo fuser -vvv /var/lib/dpkg/lock
sudo rm /var/lib/apt/lists/lock
sudo cp -arf /var/lib/dpkg /var/lib/dpkg.backup
sudo cp /var/lib/dpkg/status-old /var/lib/dpkg/status
sudo cp /var/lib/dpkg/available-old /var/lib/dpkg/available
sudo rm -rf /var/lib/dpkg/updates/*
sudo rm -rf /var/lib/apt/lists
sudo rm /var/cache/apt/*.bin
sudo mkdir /var/lib/apt/lists
sudo mkdir /var/lib/apt/lists/partial
LANG=C;sudo apt-get clean
LANG=C;sudo apt-get autoclean
LANG=C;sudo apt-get --purge autoremove
LANG=C;sudo apt-get update -o APT::Cache-Limit=25165824
sudo dpkg --clear-avail
sudo dpkg --configure -a
LANG=C;sudo apt-get -f install
LANG=C;sudo apt-get --fix-missing install
LANG=C;sudo apt-get update -o APT::Cache-Limit=25165824 && sudo apt-get dist-upgrade

Revision history for this message
Tim Mousseau (tim-mousseau) said :
#3

Thanks actionparsnip, that solved my question.