0

Every time I try updating my system with sudo apt-get update, I'm prompted with this:

E: Failed to fetch http://ppa.launchpad.net/pasgui/ppa/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

How do I fix this?

edwinksl
  • 23,789

2 Answers2

3

sudo apt-get update doesn't actually update anything. It just refreshes Ubuntu's repositories, so it knows if updates are available. You need to run sudo apt-get upgrade to actually update any packages.

As for that error, it shouldn't affect much in terms of upgrades. Since it's obviously an invalid PPA, you can just remove it. Do that by running sudo add-apt-repository -r ppa:pasgui/ppa. Once you do that, you won't have any more annoying errors.

edwinksl
  • 23,789
TheWanderer
  • 19,395
  • 12
  • 50
  • 65
1

This PPA you have added does not provide packages for Xenial; you should remove it.

fkraiem
  • 12,555
  • 4
  • 35
  • 40