「ファイルを開けません:そのようなファイルまたはディレクトリはありません」tarファイルを抽出するとき


10

tar.gzファイルであるApache Cassandraをインストールしようとしています。以下は私が得ている出力です。

最初のインスタンス:

tar -zxvf apache-cassandra-2.0.3-bin.tar.gz
tar (child): apache-cassandra-2.0.3-bin.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

2番目のインスタンス:

tar -zxvf apache-cassandra-2.0.3-bin.tar.gz.gitignore
tar (child): apache-cassandra-2.0.3-bin.tar.gz.gitignore: 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

何をすべきか?インストールする必要があるファイルはディスクにあり、マシンにコピーされていません。それは重要ですか?


ファイルは現在のディレクトリにありますか?(pwd現在の作業ディレクトリの確認、ディレクトリのcd変更、lsファイル名の確認に使用)
Pandya

@AJこれはどのように複製されますか?
Braiam

@Braiam私は問題が.tar.gzのインストールにあると思いました...すみません...
AJ

回答:


8

問題の理由はエラーレポートにあります。

Cannot open: No such file or directory

cdapache-cassandra-2.0.3-bin.tar.gzファイルが置かれているディレクトリに移動し、以下のコマンドを実行してファイルのコンテンツを抽出します。

tar -zxvf filename.tar.gz   # Replace the filename with your's
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.