0

I'm getting the error below when I run:

sudo apt-get update

Any idea how this can be fixed?

check the highlighted error

SurvivalMachine
  • 2,773
  • 6
  • 20
  • 32
amrkdev
  • 113
  • 2
  • 1
    You have configured some repositories to look for `eoan` and some other for `focal`. If you are running Focal Fossa (20.04), you can delete all the entries in files referring to `eoan` in `/etc/apt/` – dariofac Dec 22 '20 at 14:45
  • you have some references to Eoan Ermine (19.10) which is EOL since July this year: https://wiki.ubuntu.com/Releases – dragosht Dec 22 '20 at 14:46
  • 1
    See the answer to this question: [E: The repository 'http//archive.canonical.com precise Release' is not signed](https://askubuntu.com/questions/1120194/e-the-repository-http-archive-canonical-com-precise-release-is-not-signed) – user68186 Dec 22 '20 at 15:06

1 Answers1

0

Open a terminal and open apt source list:

sudo nano /etc/apt/sources.list

(You can use other editor, but you have to open with sudo)

Search for

deb http://bg.archive.ubuntu.com/ubuntu eoan-updates Release

And remove that line. It's from an older version of ubuntu which is not supported in 20.04 (focal).

Then you must save and do

sudo apt update

and shouldn't be any more error.