* Public key missing for Guix installation script?
@ 2019-02-14 5:02 evan.straw99
2019-02-14 8:22 ` Giovanni Biscuolo
2019-02-14 8:25 ` Efraim Flashner
0 siblings, 2 replies; 5+ messages in thread
From: evan.straw99 @ 2019-02-14 5:02 UTC (permalink / raw)
To: guix-devel
Hello,
Tried to post this once before but it got rejected from the mailing
list for some reason.
I'm trying to install GNU Guix using the installation script
(https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh)
.
Early on, there is a GPG verification step that fails due to a missing
PGP key. The script tells me:
[1550113585.102]: Starting installation (Wed Feb 13 19:06:25 PST 2019)
[1550113585.106]: [ PASS ] verification of required commands completed
[1550113585.113]: [ FAIL ] Missing OpenPGP public key. Fetch it with
this command:
gpg --keyserver pool.sks-keyservers.net --recv-keys
3CE464558A84FDC69DB40CFB090B11993D9AEBB5
However, upon running that gpg command, I receive the following error
message:
"gpg: keyserver receive failed: No data"
It appears this key is missing from the key server. Additionally, I've
been searching all around other key servers for this key and I can't
find anything.
Not sure what to do about this. Is there a place I can find this key,
or is it safe to just comment out the verification step in the
installation script for now?
Thanks,
- Evan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Public key missing for Guix installation script?
2019-02-14 5:02 Public key missing for Guix installation script? evan.straw99
@ 2019-02-14 8:22 ` Giovanni Biscuolo
2019-02-14 16:45 ` Evan Straw
2019-02-14 8:25 ` Efraim Flashner
1 sibling, 1 reply; 5+ messages in thread
From: Giovanni Biscuolo @ 2019-02-14 8:22 UTC (permalink / raw)
To: evan.straw99, guix-devel; +Cc: help-guix
[-- Attachment #1: Type: text/plain, Size: 793 bytes --]
Hello Evan,
please consider that help-guix@gnu.org is more appropriate for this kind
of questions :-)
evan.Straw99@gmail.com writes:
[...]
> this command:
> gpg --keyserver pool.sks-keyservers.net --recv-keys
> 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
>
> However, upon running that gpg command, I receive the following error
> message:
> "gpg: keyserver receive failed: No data"
once it happened to me too: I tried a second time and I was able to
import the key
unfortunately it seems that the keyserver network is someway abused; see
https://dev.gnupg.org/T4163 for details
AFAIU there is nothing Guix devels can do about this, just be patient
about this keyserver issue ;-)
HTH!
Giovanni
[...]
--
Giovanni Biscuolo
Xelera IT Infrastructures
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Public key missing for Guix installation script?
2019-02-14 5:02 Public key missing for Guix installation script? evan.straw99
2019-02-14 8:22 ` Giovanni Biscuolo
@ 2019-02-14 8:25 ` Efraim Flashner
1 sibling, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2019-02-14 8:25 UTC (permalink / raw)
To: evan.straw99; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1728 bytes --]
On Wed, Feb 13, 2019 at 09:02:46PM -0800, evan.straw99@gmail.com wrote:
> Hello,
> Tried to post this once before but it got rejected from the mailing
> list for some reason.
> I'm trying to install GNU Guix using the installation script
> (https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh)
> .
>
> Early on, there is a GPG verification step that fails due to a missing
> PGP key. The script tells me:
> [1550113585.102]: Starting installation (Wed Feb 13 19:06:25 PST 2019)
> [1550113585.106]: [ PASS ] verification of required commands completed
> [1550113585.113]: [ FAIL ] Missing OpenPGP public key. Fetch it with
> this command:
> gpg --keyserver pool.sks-keyservers.net --recv-keys
> 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
>
> However, upon running that gpg command, I receive the following error
> message:
> "gpg: keyserver receive failed: No data"
>
> It appears this key is missing from the key server. Additionally, I've
> been searching all around other key servers for this key and I can't
> find anything.
> Not sure what to do about this. Is there a place I can find this key,
> or is it safe to just comment out the verification step in the
> installation script for now?
>
> Thanks,
> - Evan
>
I come across this occasionally, so in my scripts I've changed it to:
until gpg --recv-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5; do echo "trying again..."; done
The key is also available at http://www.fdn.fr/~lcourtes/ludovic.asc
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Public key missing for Guix installation script?
2019-02-14 8:22 ` Giovanni Biscuolo
@ 2019-02-14 16:45 ` Evan Straw
2019-02-14 17:43 ` Giovanni Biscuolo
0 siblings, 1 reply; 5+ messages in thread
From: Evan Straw @ 2019-02-14 16:45 UTC (permalink / raw)
To: Giovanni Biscuolo; +Cc: help-guix
[-- Attachment #1.1: Type: text/plain, Size: 1243 bytes --]
Hi,
Apologies for sending this to the wrong mailing list, I realized some
time after sending my message that help-guix would be better but didn't
want to duplicate my message. I'll send appropriate stuff there instead
in the future.
I managed to get the public key using the method you suggested on
Brett's thread in guix-devel. The installation script is working now,
thanks for your help!
-Evan
On 2/14/19 12:22 AM, Giovanni Biscuolo wrote:
> Hello Evan,
>
> please consider that help-guix@gnu.org is more appropriate for this kind
> of questions :-)
>
> evan.Straw99@gmail.com writes:
>
> [...]
>
>> this command:
>> gpg --keyserver pool.sks-keyservers.net --recv-keys
>> 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
>>
>> However, upon running that gpg command, I receive the following error
>> message:
>> "gpg: keyserver receive failed: No data"
> once it happened to me too: I tried a second time and I was able to
> import the key
>
> unfortunately it seems that the keyserver network is someway abused; see
> https://dev.gnupg.org/T4163 for details
>
> AFAIU there is nothing Guix devels can do about this, just be patient
> about this keyserver issue ;-)
>
> HTH!
> Giovanni
>
> [...]
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Public key missing for Guix installation script?
2019-02-14 16:45 ` Evan Straw
@ 2019-02-14 17:43 ` Giovanni Biscuolo
0 siblings, 0 replies; 5+ messages in thread
From: Giovanni Biscuolo @ 2019-02-14 17:43 UTC (permalink / raw)
To: Evan Straw; +Cc: help-guix
[-- Attachment #1: Type: text/plain, Size: 866 bytes --]
Hi,
Evan Straw <evan.straw99@gmail.com> writes:
[...]
> I managed to get the public key using the method you suggested on
> Brett's thread in guix-devel. The installation script is working now,
for reference here, this is the useful snippet from the thread in
guix-devel:
--8<---------------cut here---------------start------------->8---
use:
$ gpg --keyserver hkps://hkps.pool.sks-keyservers.net --search-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
AFAIU for this to work out of the box users need a 2.1.11 and above
gnupg version, otherwise they should follow the instructions found here:
https://sks-keyservers.net/overview-of-pools.php#pool_hkps
--8<---------------cut here---------------end--------------->8---
> thanks for your help!
you're wellcome :-)
[...]
--
Giovanni Biscuolo
Xelera IT Infrastructures
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-02-14 17:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-14 5:02 Public key missing for Guix installation script? evan.straw99
2019-02-14 8:22 ` Giovanni Biscuolo
2019-02-14 16:45 ` Evan Straw
2019-02-14 17:43 ` Giovanni Biscuolo
2019-02-14 8:25 ` Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.