Este comando só pode ser usado pelo root

3

Estou no Ubuntu 16 e gostaria de adicionar um pacote neo4j. Eu tentei de 3 maneiras, todas levando ao mesmo erro.

Estas são minhas tentativas:

wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -

sudo wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -

sudo -i wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -

Mas eu sempre recebo esta mensagem de erro:

ERROR: This command can only be used by root.
--2016-11-04  http://debian.neo4j.org/neotechnology.gpg.key
Resolving debian.neo4j.org (debian.neo4j.org)... 52.0.233.188
Connecting to debian.neo4j.org (debian.neo4j.org)|52.0.233.188|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4791 (4,7K) [application/octet-stream]
Saving to: ‘STDOUT’

-                     0%[                    ]       0  --.-KB/s    in 0s      


Cannot write to ‘-’ (Broken pipe).
    
por splunk 04.11.2016 / 16:29

2 respostas

6

Você precisa alterar seu comando wget de:

sudo wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -

para:

sudo wget http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -

das man pages para wget ...

   -O file
   --output-document=file
       The documents will not be written to the appropriate files, but all
       will be concatenated together and written to file.  If - is used as
       file, documents will be printed to standard output, disabling link
       conversion.
    
por heynnema 04.11.2016 / 16:37
3

A mensagem de erro é de apt-key e, como diz, use-a com sudo :

wget -O - http://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
    
por muru 04.11.2016 / 17:01