0

When I run update manager, Ii get following error.

enter image description here

I am using Ubuntu 12.04 LTS, 64 bit. I am new to Ubuntu please help me out.

Mitch
  • 109,787
vipubuntu
  • 66
  • 1
  • 8

1 Answers1

0

The reason is that this repository does not have packages for your version of Ubuntu (precise). Take a look at http://ppa.launchpad.net/crebs/ppa/ubuntu/dists/.

You need to remove this repository from your /etc/apt/sources.list file.

gksudo gedit /etc/apt/sources.list

Find the lines that contain "crebs". They should look like

deb http://ppa.launchpad.net/crebs/ppa/ubuntu jaunty main

(or something like this). and put a # (hash) in front of each of them:

# deb http://ppa.launchpad.net/crebs/ppa/ubuntu jaunty main

Repository is now disabled. Save the file, exit the editor and in a terminal, run

sudo apt-get update && sudo apt-get upgrade

(there is also a GUI way of doing that via software sources or something similar from Ubuntu dash, but I don't remember where it sits)

January
  • 37,208