1

I seem to have messed up the sudo apt update command in Terminal.

sudo apt update:

E: Invalid value set for option Signed-By regarding source https://downloads.plex.tv/repo/deb/ public (not a fingerprint)
E: The list of sources could not be read.

cat /etc/apt/sources.list:

E:

I'm just starting to figure out Ubuntu (complete beginner).

Can someone please help me understand what I've done and how I can fix this?

1 Answers1

2

First you need to add key for Plexmedia server. You can do it by executing below command in terminal.

curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -

You need to generate source list file which is messed up.

You need to edit /etc/apt/source.list file and place below content for Ubuntu 22.10 version. You can do it by executing below command in terminal.

sudo nano /etc/apt/source.list

Place below content in editor and save it.

###### Ubuntu Main Repos
deb http://archive.ubuntu.com/ubuntu/ kinetic main restricted universe multiverse
Ubuntu Update Repos

deb http://archive.ubuntu.com/ubuntu/ kinetic-security main restricted universe multiverse

After that you should able to run sudo apt update without any error.

KK Patel
  • 19,083