4

Whenever I try to update terminal tells me this

Ign:20 http://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04 ./ Release.gpg
Reading package lists... Done 
W: GPG error: http://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04 ./ Release: The following signatures were invalid: EXPKEYSIG 2F7F0DA5FD5B64B9 home:strycore OBS Project <home:strycore@build.opensuse.org>
E: The repository 'http://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04 ./ Release' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

The answer here 'http://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04 ./ Release' is not signed does not solve my problem.

Tim
  • 32,861
  • 27
  • 118
  • 178
NilNail Screw
  • 41
  • 1
  • 1
  • 3

2 Answers2

8

The key is expired, you could try downloading it again.

wget -qO - https://download.opensuse.org/repositories/home:/strycore/xUbuntu_16.04/Release.key | sudo apt-key add -
sudo apt-get update
Liso
  • 15,377
  • 3
  • 51
  • 80
1

I was able to resolve my problem by using cmd

curl https://build.opensuse.org/projects/home:manuelschneid3r/public_key | sudo apt-key add -
echo 'deb http://download.opensuse.org/repositories/home:/manuelschneid3r/xUbuntu_20.04/ /' | sudo tee /etc/apt/sources.list.d/home:manuelschneid3r.list
sudo wget -nv https://download.opensuse.org/repositories/home:manuelschneid3r/xUbuntu_20.04/Release.key -O "/etc/apt/trusted.gpg.d/home:manuelschneid3r.asc"
sudo apt update
sudo apt install albert
Lorenz Keel
  • 8,905