Raspbian

GPG 錯誤:使用 cURL 安裝 Docker 時出現“以下簽名無效”

  • January 16, 2020

我正在嘗試在我的 Raspberry Pi 4b(r​​aspian 10 buster)上安裝 docker,但是在執行官方網站上列出的安裝命令時出現此錯誤:

~ > sudo curl -sSL https://get.docker.com | sh
# Executing docker install script, commit: f45d7c11389849ff46a6b4d94e0dd1ffebca32c1
+ sudo -E sh -c apt-get update -qq >/dev/null
W: GPG error: http://ftp.utexas.edu/mariadb/repo/10.1/debian jessie InRelease: The following signatures were invalid: 199369E5404BD5FC7D2FE43BCBCB082A1BB943DB
E: The repository 'http://ftp.utexas.edu/mariadb/repo/10.1/debian jessie InRelease' is not signed.

這是我第一次收到此錯誤,與此處出現的類似問題不同apt update/ apt upgrade。該錯誤提示存在問題mariadb,但是,雖然我在安裝它時遇到了一些問題,但它現在正在執行,版本沒有任何問題10.3

關於如何修復無效簽名的任何想法?

我在安裝 Raspberry Pi 時也遇到了一些問題,對我幫助最大的是 Docker Wiki 中的一個: https ://docs.docker.com/install/linux/docker-ce/debian/ 。

但是,您的問題似乎與回購本身有關。在 URL 中,您可以看到它是 Jessie 的儲存庫,而不是 Buster 的儲存庫。您應該檢查您的/etc/apt/sources.list和中的所有內容/etc/apt/sources.list.d/,甚至可以將它們重置為預設值。

引用自:https://unix.stackexchange.com/questions/562197