User Tools

Site Tools


unix:linux:debian:devuan_apt

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
unix:linux:debian:devuan_apt [2021/02/28 18:51] – created rodolicounix:linux:debian:devuan_apt [2022/11/21 19:13] (current) rodolico
Line 1: Line 1:
 ====== Devuan APT ====== ====== Devuan APT ======
 +
 +===== Certificate Error =====
 +
 +Sometimes, the old certificate will no longer work on secondary packages. In the fall of 2022, we had a problem with goaccess. The way to fix this is to remove the old gpg key, and add a new one from the client site. This will show up when trying to do an //apt update// and will look similar to this:
 +<code bash>
 +Err:9 https://deb.goaccess.io focal InRelease
 +  The following signatures were invalid: EXPKEYSIG 97BD1A0133449C3D Gerardo Orellana <goaccess@prosoftcorp.com>
 +</code>
 +
 +Following was the fix for goaccess. Note that the you need to use the correct key to remove, remove the correct file, and download the new file from the correct URL.
 +
 +<code bash>
 +apt-key del 97BD1A0133449C3D
 +rm -rf /usr/share/keyrings/goaccess.gpg
 +wget -O - https://deb.goaccess.io/gnugpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/goaccess.gpg >/dev/null
 +cd /usr/share/keyrings
 +sudo apt-key add goaccess.gpg
 +</code>
 +
 +==== Links ====
 +  * https://linuxconfig.org/ubuntu-20-04-gpg-error-the-following-signatures-couldn-t-be-verified
 +  * https://goaccess.io/download
 +  * https://github.com/allinurl/goaccess/issues/2321
  
 ===== Devuan System ===== ===== Devuan System =====
unix/linux/debian/devuan_apt.txt · Last modified: 2022/11/21 19:13 by rodolico