Não é possível importar a chave GPG do nó [closed]

1

Estou trabalhando em um Ubuntu muito antigo 8

Estou tentando fazer isso

$ curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
gpg: no valid OpenPGP data found.

UPDATE 1:

Mesmo problema usando sudo :

$ curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | sudo apt-key -add 
gpg: no valid OpenPGP data found.

UPDATE 2:

Encontrou o problema, mas não a solução:

curl -k https://deb.nodesource.com/gpgkey/nodesource.gpg.key
curl: (35) error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure

enrolar informações:

curl --version
curl 7.18.0 (i486-pc-linux-gnu) libcurl/7.18.0 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.1
Protocols: tftp ftp telnet dict ldap ldaps http file https ftps
Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz
    
por realtebo 08.02.2017 / 10:24

1 resposta

2

Eu construí uma versão atualizada do curl

#! /usr/bin/env bash

# Install any build dependencies needed for curl
sudo apt-get build-dep curl

# Downloaded and build lastest available version at 02/08/2017
mkdir ~/curl
cd ~/curl
wget --no-check-certificate http://curl.haxx.se/download/curl-7.52.1.tar.bz2
tar -xvjf curl-7.52.1.tar.bz2
cd curl-7.52.1

# The usual steps for building an app from source
./configure
make
sudo make install

# Resolve any issues of C-level lib
# location caches ("shared library cache")
sudo ldconfig

Depois disso, baixei com sucesso e adicionei a chave do nó

    
por realtebo 08.02.2017 / 11:02