更新 ubuntu 时无法获取 Spotify 存储库

更新 ubuntu 时无法获取 Spotify 存储库

鉴于我已经在我的 ubuntu 系统上安装了 spotify 当我使用以下命令进行升级时:

sudo apt-get update

然后我收到这个错误:

W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://repository.spotify.com stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 13B00F1FD2C19886

W: Failed to fetch http://repository.spotify.com/dists/stable/InRelease  

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

答案1

当我们不知何故丢失了钥匙时,就会发生这种情况。

为了解决这个问题,我确实执行了官方安装指南,在部分内Debian / Ubuntu

答案2

我遇到了同样的问题。基本上,您可以通过 Y-PPA-Manager 来处理。因此,请按照确切的步骤操作,

  1. sudo add-apt-repository ppa:webupd8team/y-ppa-manager添加 webupd8 存储库。
  2. sudo apt update
  3. sudo apt install y-ppa-manager
  4. y-ppa-manager运行y-ppa-经理
  5. 点击先进的
  6. 点击尝试导入所有缺失的 GPG 密钥然后点击确定。完成后会给你一个提醒。
  7. apt update

答案3

奇怪的是,我在 2020 年开始遇到此错误。我通过运行其网站上提供的命令修复了这个问题。

curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add - 
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list

sudo apt-get update && sudo apt-get install spotify-client

或者如果你使用 snap:

snap install spotify

在此处找到命令: https://www.spotify.com/de/download/linux/

相关内容