タグ付けされた質問 「unzip」

unzipは、ユーティリティ「unzip」または解凍のアクションを指します。

8
.tar.gzファイルを解凍/抽出するには、どのコマンドが必要ですか?
約800 mbの画像ファイルを含む巨大な.tar.gzファイルをクライアントから受信しました(非圧縮時)。当社のホスティング会社のftpは非常に遅いため、すべてのファイルをローカルで抽出してftpで送信することは実用的ではありません。.tar.gzファイルをホスティングサイトにftpできましたが、ディレクトリにsshしてunzipを使用しようとすると、次のエラーが表示されます。 [esthers@clients locations]$ unzip community_images.tar.gz Archive: community_images.tar.gz 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. note: community_images.tar.gz …
830 tar  compression  extract  gzip  unzip 

6
unzipエラー「End of-central-directory signature not found」
zipファイルを解凍しようとしましたが、エラーが発生しました。 $ unzip COCR2_100.zip Archive: COCR2_100.zip 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. note: COCR2_100.zip may be …
96 unzip 


3
フォルダー内のすべての.zipファイルのコンテンツをリストし、特定のファイルのgrepを表示するにはどうすればよいですか?
348個のzipファイルがあり、zipファイルの1つにあるファイルを検索したいのですが、unzip -lワイルドカードでは機能しませんか? すべての.zipファイルのコンテンツを一覧表示grepし、zipに含まれるすべてのファイルの結合リストを表示するにはどうすればよいですか?
28 grep  zip  unzip 



1
ファイルを解凍できません
ファイルを解凍しようとしているので、次のコマンドを試してみてください ところでこれはUbuntuサーバーの最新リリースです。 user@serverubuntu:~/minecraft/server$ ls rtk.zip user@serverubuntu:~/minecraft/server$ sudo unzip rtk.zip sudo: unzip: command not found user@serverubuntu:~/minecraft/server$ 私はsudoなしで試してみると、これを得る user@serverubuntu:~/minecraft/server$ unzip rtk.zip Sorry, command-not-found has crashed! Please file a bug report at: https://bugs.launchpad.net/command-not-found/+filebug Please include the following information with the report: command-not-found version: 0.3 Python version: 3.2.3 final 0 Distributor ID: Ubuntu Description: …

3
複数のファイルを解凍します
この問題を抱えているのは私だけではないと思いますが、残念ながら、以前に尋ねられた質問の間に適切な答えを見つけることができませんでした。 これは、コンテンツが多くの小さなアーカイブに分割されているトレントサイトで非常に一般的な手順です。時には、それらの小さなインデックス付きzipアーカイブには、別のrarアーカイブが含まれています。 だから、私の質問は次のとおりです。この問題をどのように処理しますか?これらのファイルを再帰的に解凍するにはどうすればよいですか?
14 unzip 

1
別のファイル名で解凍したい
「example.zip」という名前のzipアーカイブを抽出する必要がありますが、「example」がフォルダ名ではなく、別のファイル名で抽出したいのですが、「example.zip」というunzipを使用してzipアーカイブを抽出するにはどうすればよいですか'フォルダー名' examplefold 'として抽出します
14 unzip 

3
最上位ディレクトリを作成せずに特定のディレクトリを解凍します
すべてのファイルが保存されている最上位ディレクトリがあるZIPファイルがあります。 Release/ Release/file Release/subdirectory/file Release/subdirectory/file2 Release/subdirectory/file3 Releaseディレクトリ構造を維持したまま、すべてを抽出したいのですが、これを実行すると: unzip archive.zip Release/* -d /tmp トップReleaseフォルダーを作成します。 /tmp/Release/ /tmp/Release/file /tmp/Release/subdirectory/file /tmp/Release/subdirectory/file2 /tmp/Release/subdirectory/file3 次のように、フォルダーRelease を作成せずにすべてを内部に抽出する方法Release: /tmp/ /tmp/file /tmp/subdirectory/file /tmp/subdirectory/file2 /tmp/subdirectory/file3

1
zipアーカイブで長い名前のファイルの名前を変更/抽出する方法
非常に長い名前のファイルを含むzipがあります。 コマンドラインで抽出しようとすると、「ファイル名が長すぎます」というエラーが表示されます。 グラフィカルアーカイブマネージャーを使用すると、ファイルが抽出されず、ファイル名を変更できません。アーカイブをマウントしても同じ問題が発生します。 私は個別にファイルを抽出して名前を変更できます: unzip -p -c example.zip "long file name.ogg" > shortname.ogg これは多くのファイルでは非現実的です。 ファイル名が抽出されるときにファイル名を切り捨てるツールはありますか?
11 zip  filename  unzip 

2
コマンドラインからあらゆる種類のアーカイブファイルをすばやく抽出する方法
多くの場合、カンマドラインを使用して、さまざまな種類のアーカイブファイルを抽出する必要があります。しかし、どのタイプのファイルアーカイブでも、正確なコマンドを覚えているとは限りません。だから、私は時間を無駄にして、もう一度検索しなければなりません。どうすればこれを回避できますか?


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