0

I can't update, i have this error when running apt-get update command!

W: Failed to fetch http://ppa.launchpad.net/cooperjona/nitrotasks/ubuntu/dists/utopic/main/binary-amd64/Packages  404  Not Found

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

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

what can i do?

1 Answers1

0

You can do one of two things.

This ppa has not been updated since 2013 so it may be wise to not use it for now. You can however download the most recent version of nitrotasks from https://launchpad.net/~cooperjona/+archive/ubuntu/nitrotasks/+packages and install it manually.

First, to delete the outdated ppa open a terminal and execute the following commands:

sudo rm /etc/apt/sources.list.d/cooperjona-ubuntu-nitrotasks-utopic.list*

Now, update your package list:

sudo apt-get update

Finally, download the desired software directly from the ppa and install it:

wget https://launchpad.net/~cooperjona/+archive/ubuntu/nitrotasks/+files/nitrotasks_1.5-0%7E31%7Esaucy1_all.deb

install it:

sudo dpkg -i nitrotasks_1.5-0~31~saucy1_all.deb

resolve dependencies:

sudo apt-get -f install
mchid
  • 44,904
  • 8
  • 102
  • 162