1

I am trying to do an update and am getting the following error. Could anyone help on a solution. My kernel will not update because of this

W: Failed to fetch http://ppa.launchpad.net/psyke83/ppa/ubuntu/dists/trusty/main/binary-amd64/Packages  404  Not Found
W: Failed to fetch http://ppa.launchpad.net/psyke83/ppa/ubuntu/dists/trusty/main/binary-i386/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
A.B.
  • 90,397

1 Answers1

2

The PPA that you are trying to upgrade packages from (found here) hasn't been updated for 5 years. It does not provide packages for your 14.04 version of Ubuntu.

You should get rid of the PPA, e.g. by installing ppa-purge and doing

sudo ppa-purge ppa:psyke83/ppa

Then do sudo apt-get update.

Then, sudo apt-get upgrade will remove the packages from this PPA, and install your new kernel.

Jos
  • 29,224
  • is this the command sudo ppa-purge ppa.launchpad.net/psyke83/ppa/ubuntu/dists/trusty/main/binary-amd64/Packages I done this and done update but still same issue – gooner1990 Jul 17 '15 at 11:22
  • I added the PPA to my system, and used ppa-purge to remove it. I edited my answer with the exact command above. – Jos Jul 17 '15 at 11:28
  • Thank you but I ran that purge command and this is what happened Updating packages lists W: Failed to fetch http://ppa.launchpad.net/psyke83/ppa/ubuntu/dists/trusty/main/binary-amd64/Packages 404 Not Found

    W: Failed to fetch http://ppa.launchpad.net/psyke83/ppa/ubuntu/dists/trusty/main/binary-i386/Packages 404 Not Found

    E: Some index files failed to download. They have been ignored, or old ones used instead. Warning: apt-get update failed for some reason PPA to be removed: psyke83 ppa Warning: Could not find package list for PPA: psyke83 ppa

    – gooner1990 Jul 17 '15 at 11:30
  • Manually remove /etc/apt/sources.list.d/psyke83-ubuntu-ppa-trusty.list and retry. – Jos Jul 17 '15 at 11:38