Não é possível extrair o arquivo .tar.gz? [duplicado]

1

Eu instalei o arquivo .tar.gz para BRL-CAD. O nome do arquivo é BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz no local /home/user/Downloads .

Eu abri o Terminal e digitei

$ tar -zxvf BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz
tar (child): BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now

O que exatamente devo digitar no Terminal para que eu possa extrair o arquivo .tar.gz?

    
por user604803 21.10.2016 / 02:26

1 resposta

0

Tente isto:

Abra um terminal

Pressione Ctrl + Alt + T

Execute:

cd /home/user/Downloads
tar -zxvf BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz
    
por kyodake 21.10.2016 / 02:32