Mountain Lion(10.8.3)を実行しているローカルMac にMongoDBの10genビルドをインストールしようとしています。
私はそれを次のようにフェッチcurl
します:
curl http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.tgz > mongodb.tgz
しかし、私はビルドを抽出できません:
試行1:
$ tar -zxvf mongodb.tgz
tar: Unrecognized archive format
tar: Error exit delayed from previous errors.
試み2:
$ gunzip mongodb.tgz
gzip: mongodb.tgz: not in gzip format
試行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.
ダブルクリック:
ファインダーでtgzファイルをダブルクリックすると、新しいファイルが作成されますmongodb.tgz 2.cpgz
ここで私が間違っていることは何か考えていますか?私はさまざまなビルドを試しましたが、すべてこの問題を再現しています:
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
3
「ファイルmongodb.tgz」を実行して、コンテンツタイプを識別します...
—
andrekeller