Page 2 of 4
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:16 am
by GuiGuy
asqwerth wrote: Wed Mar 13, 2019 10:06 am...........
But after copying, you still need to add the new key. You only save on the step of downloading the key file.
Will "sudo apt-get update" add it OK?
Edit:-
My question is really "How do I add the new key after I have copied it to the correct location?".
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:36 am
by fehlix
asqwerth wrote: Wed Mar 13, 2019 10:06 am
But after copying, you still need to add the new key. You only save on the step of downloading the key file.
You copy the updated trusted keyring not the keyfile: antix-archive-keyring.asc.
The file antix-archive-keyring.asc holds the public-signing key. It is not a gpg-keyring (despite the name)
The keyring is here: /etc/apt/trusted.gpg.d/antix-archive-keyring.gpg
with apt-key add you add/update public-key(s) from antix-archive-keyring.asc
into trusted keyring file /etc/apt/trusted.gpg.d/antix-archive-keyring.gpg.
The just provided deb-file is doing exactly the same.
Replacing the trusted keying /etc/apt/trusted.gpg.d/antix-archive-keyring.gpg
with a newer on.
HTH

Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:37 am
by anticapitalista
If you copy /etc/apt/trusted.gpg.d/antix-archive-keyring.gpg to all your boxes, run apt-get update and a new antix-archive-keyring deb will show up for installation.
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:40 am
by fehlix
GuiGuy wrote: Wed Mar 13, 2019 10:16 am
asqwerth wrote: Wed Mar 13, 2019 10:06 am...........
But after copying, you still need to add the new key. You only save on the step of downloading the key file.
Will "sudo apt-get update" add it OK?
Edit:-
My question is really "How do I add the new key after I have copied it to the correct location?".
Just copy, the newly updated keyring. Thats it. The updated keyring hold the mew public-signing key.
Or use the new deb-package which was just provided by aniti ( see updated first post )
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:44 am
by fehlix
anticapitalista wrote: Wed Mar 13, 2019 10:37 am
If you copy /etc/apt/trusted.gpg.d/antix-archive-keyring.gpg to all your boxes, run apt-get update and a new antix-archive-keyring deb will show up for installation.
Indeed, the new antix-archive-keyring deb will again replace the existing "copied" and already valid /etc/apt/trusted.gpg.d/antix-archive-keyring.gpg, with the "same" already copied version. So by this this file is now also owned/provided by this deb-package.
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:47 am
by GuiGuy
anticapitalista wrote: Wed Mar 13, 2019 10:37 am
If you copy /etc/apt/trusted.gpg.d/antix-archive-keyring.gpg to all your boxes, run apt-get update and a new antix-archive-keyring deb will show up for installation.
Thanks, anti. Does that mean asquerth's advice was wrong?
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:49 am
by asqwerth
Ah so.
Follow anti and fehlix, not me!
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 4:00 pm
by KoO
Da man anticapitalista Thank You
Re: EXPKEYSIG error and fix
Posted: Wed Mar 13, 2019 10:34 pm
by Otter
Thank you very much. This worked.
Re: EXPKEYSIG error and fix
Posted: Thu Mar 14, 2019 7:34 pm
by BobbieAN
anticapitalista wrote: Wed Mar 13, 2019 8:35 am
For those users getting the EXPKEYSIG error.
Method 1:
3 steps, in a terminal
1.
Code: Select all
wget 'https://download.tuxfamily.org/antix/releases/antix-archive-keyring.asc'
or
Code: Select all
wget 'http://repo.antixlinux.com/antix-archive-keyring.asc'
2.
Code: Select all
sudo apt-key add antix-archive-keyring.asc
3.
Method 2:
1. Download antix-archive-keyring_20019.3.13_all.deb from here:
http://repo.antixlinux.com
In the directory where you downloaded the deb, use gdebi to install or do this -
2.
Code: Select all
sudo dpkg -i antix-archive-keyring_20019.3.13_all.deb
3.
Method 1 worked, tnx.