Caricatura Animada Los Tres Cerditos en PDF

Quino - Quinoterapia

Corregir error: "Las siguientes firmas no fueron válidas:" al actualizar UBUNTU 18.04

Hola a todos, después de mucho tiempo vuelvo a publicar. La siguiente situación me aparecía al intentar aplicar el comando
sudo apt-get update
Des:1 http://repo.mysql.com/apt/ubuntu bionic InRelease [19,4 kB] Obj:2 http://co.archive.ubuntu.com/ubuntu bionic InRelease Obj:3 https://dl.winehq.org/wine-builds/ubuntu bionic InRelease Obj:4 http://co.archive.ubuntu.com/ubuntu bionic-updates InRelease Obj:5 http://dl.google.com/linux/chrome/deb stable InRelease Err:1 http://repo.mysql.com/apt/ubuntu bionic InRelease Las siguientes firmas no fueron válidas: EXPKEYSIG 8C718D3B5072E1F5 MySQL Release Engineering Obj:6 http://co.archive.ubuntu.com/ubuntu bionic-backports InRelease Obj:7 https://dl.yarnpkg.com/debian stable InRelease Obj:8 https://download.mono-project.com/repo/ubuntu stable-bionic InRelease Obj:9 http://security.ubuntu.com/ubuntu bionic-security InRelease Obj:10 http://ppa.launchpad.net/kxstudio-debian/libs/ubuntu bionic InRelease Obj:11 http://archive.canonical.com bionic InRelease Obj:12 https://download.mono-project.com/repo/ubuntu vs-bionic InRelease Obj:13 http://packages.microsoft.com/repos/vscode stable InRelease Obj:14 http://repo.fortinet.com/repo/ubuntu bionic InRelease Obj:15 https://repo.skype.com/deb stable InRelease Ign:16 http://www.scootersoftware.com bcompare4 InRelease Obj:17 http://ppa.launchpad.net/kxstudio-debian/music/ubuntu bionic InRelease Obj:18 http://www.scootersoftware.com bcompare4 Release Ign:19 https://kx.studio/repo stable InRelease Ign:20 https://kx.studio/repo gcc5 InRelease Obj:21 http://ppa.launchpad.net/kxstudio-debian/plugins/ubuntu bionic InRelease Des:22 https://mega.nz/linux/MEGAsync/xUbuntu_18.04 ./ InRelease [2.473 B] Obj:23 https://kx.studio/repo stable Release Obj:24 http://ppa.launchpad.net/kxstudio-debian/apps/ubuntu bionic InRelease Obj:25 https://kx.studio/repo gcc5 Release Obj:26 http://ppa.launchpad.net/kxstudio-debian/kxstudio/ubuntu bionic InRelease Obj:27 http://ppa.launchpad.net/mkusb/ppa/ubuntu bionic InRelease Obj:29 http://ppa.launchpad.net/paulo-miguel-dias/pkppa/ubuntu bionic InRelease Obj:31 http://ppa.launchpad.net/stebbins/handbrake-releases/ubuntu bionic InRelease Obj:33 http://ppa.launchpad.net/umang/indicator-stickynotes/ubuntu bionic InRelease Leyendo lista de paquetes... Hecho W: Error de GPG: http://repo.mysql.com/apt/ubuntu bionic InRelease: Las siguientes firmas no fueron válidas: EXPKEYSIG 8C718D3B5072E1F5 MySQL Release Engineering E: El repositorio «http://repo.mysql.com/apt/ubuntu bionic InRelease» no está firmado. N: No se puede actualizar de un repositorio como este de forma segura y por tanto está deshabilitado por omisión. N: Vea la página de manual apt-secure(8) para los detalles sobre la creación de repositorios y la configuración de usuarios. W: Distribución conflictiva: http://repo.fortinet.com/repo/ubuntu bionic InRelease (se esperaba bionic, pero se obtuvo )
Finalmente encontré la solución, gracias a lo que encontré en esta respuesta al mismo problema en askubuntu: https://askubuntu.com/questions/1120363/mysql-ppa-invalid-signature Abriendo la terminal (Ctrl+Alt+T) e ingresando uno los siguientes comandos:
sudo apt-key list
Con este comando verifiqué que la firma había caducado:
pub dsa1024 2003-02-03 [SCA] [caducó: 2019-02-17] A4A9 4068 76FC BD3C 4567 70C8 8C71 8D3B 5072 E1F5 uid [ caducada ] MySQL Release Engineering
Luego apliqué el comando:
sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 8C718D3B5072E1F5
8C718D3B5072E1F5 es la clave que se indica en el error del update. finalmente al ejecutar otra vez el comando
sudo apt-get update
fue todo un éxito.