1

Whenever I execute sudo apt-get update I get this error message:

W: Failed to fetch http://ppa.launchpad.net/jolicloud-team/ppa/ubuntu/dists/natty/main/source/Sources  404  Not Found

E: Some index files failed to download. They have been ignored, or old ones used instead.

I've checked my /etc/apt/sources.list file, but there is no reference to http://ppa.launchpad.net/jolicloud-team . Could anyone help me?

Wilf
  • 30,194
  • 17
  • 108
  • 164
karen
  • 21

2 Answers2

1

There will be a file /etc/apt/sources.d/ with an entry for that PPA. That said, that PPA does not support Natty, and you really shouldn't be on Natty. Natty, or Ubuntu 11.04, reached End-of-Life in October 2012. Do upgrade to Ubuntu 12.04 or Ubuntu 14.04.

muru
  • 197,895
  • 55
  • 485
  • 740
1

Execute

grep -r jolicloud /etc/apt/sources.list.d

and then remove the files that are listed with this command.

Charo
  • 3,631