.tgz file - tar: formato de arquivo não reconhecido

9

Estou tentando instalar um 10gen build do MongoDB no meu Mac local executando o Mountain Lion (10.8.3):

Eu pego com curl em:

curl http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.tgz > mongodb.tgz

Mas não consigo extrair a compilação:

Tentativa 1:

$ tar -zxvf mongodb.tgz

tar: Unrecognized archive format
tar: Error exit delayed from previous errors.

Tentativa 2:

$ gunzip mongodb.tgz

gzip: mongodb.tgz: not in gzip format

Tentativa 3:

$ unzip mongodb.tgz

Archive:  mongodb.tgz
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
unzip:  cannot find zipfile directory in one of mongodb.tgz or
        mongodb.tgz.zip, and cannot find mongodb.tgz.ZIP, period.

Clique duplo: Se eu clicar duas vezes no arquivo tgz no localizador, ele cria um novo arquivo mongodb.tgz 2.cpgz

Alguma ideia do que estou fazendo errado aqui? Eu tentei várias construções e todas elas reproduzem esse problema:

http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.tgz > mongodb.tgz
http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.3.tgz > mongodb.tgz
http://downloads.mongodb.org/osx/mongodb-osx-x86_32-2.4.tgz > mongodb.tgz
http://downloads.mongodb.org/osx/mongodb-osx-x86_32-2.3.tgz > mongodb.tgz
    
por AlienWebguy 19.03.2013 / 20:20

2 respostas

7

você está tentando gunzip / untar não o arquivo, mas a página de erro:

<html>
<head><title>403 Forbidden</title></head>
<body>
<h1>403 Forbidden</h1>
<ul>
<li>Code: AccessDenied</li>
<li>Message: Access Denied</li>
</ul>
<hr/>
</body>
</html>

experimente este link link

    
por 19.03.2013 / 20:35
2

Desculpas, tente o link O URL de download foi alterado com o lançamento, que será corrigido nos documentos.

    
por 19.03.2013 / 21:44