Cuando sudo apt-get update
recibo el error que se muestra a continuación.
W: An error occurred during the signature verification.
The repository is not updated and the previous index files will be used.
GPG error: https://dl.winehq.org/wine-builds/ubuntu bionic InRelease:
The following signatures couldn't be verified
because the public key is not available: NO_PUBKEY 76F1A20FF987672F
W: Failed to fetch https://dl.winehq.org/wine-builds/ubuntu/dists/bionic/InRelease
The following signatures couldn't be verified
because the public key is not available: NO_PUBKEY 76F1A20FF987672F
W: Some index files failed to download. They have been ignored, or old ones used instead.
Así que sigo adelante y cambio mi espejo como lo sugiere esta pregunta a Ubuntu . Luego reinicio la computadora. Y todavía recibo el mismo error anterior cuando yo sudo apt-get update
.
Probemos y reinstalemos las claves.
$ wget -nc https://dl.winehq.org/wine-builds/Release.key && sudo apt-key add Release.key
File ‘Release.key’ already there; not retrieving. OK
Y podría también ping -c3 archive.ubuntu.com
y mi pérdida de paquetes es del 0%. ¿Qué más necesito hacer?
apt
package-management
wine
software-sources
gnupg
Jason Hunter
fuente
fuente
Respuestas:
Tenga en cuenta que después de agregar el nuevo archivo de claves, es mejor usarlo en
apt update
lugar deapt-get update
, ya que le pedirá que acepte los cambios.Entonces en su totalidad:
fuente
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
y esta solución funcionó. Como se mencionó, debe usarsudo apt update
y nosudo apt-get update
.apt
lo obliga a aceptar explícitamente, mientrasapt-get
que no lo hace y generará un error. Si tiene otras versiones de Ubuntu, su repositorio para agregar se puede encontrar aquí wiki.winehq.org/Ubunturm winehq.key
o guardar el archivo al/temp
principio. ¡Gracias de cualquier manera!A partir del 2018-12-19 08:07 hay un nuevo
winehq.key
archivo de claves como se menciona aquí .Descargue la nueva clave del repositorio y agréguela a la lista de claves confiables:
Como mencionó @ jason-hunter en un comentario,
apt update
le preguntará si acepta los cambios en el repositorio, mientrasapt-get update
que mostrará un error y fallará.fuente
Inspeccionando https://dl.winehq.org/wine-builds/ , hay un nuevo archivo
winehq.key
. Intente usar eso en su lugar, ya que su huella dactilar parece coincidir con el error:fuente
Este comando funcionó para mí:
fuente
Recientemente recibí el mismo error también:
Como resultado, el pubkey necesitaba ser agregado a mi host. Agregar la clave son los últimos 8 dígitos de la clave que ve allí
F987672F
. Agregue eso a lo siguiente para agregar la clave a su host:¡Espero que esto ayude!
fuente