Questions tagged «unzip»

解压缩是指工具“解压缩”或解压缩操作。

8
解压缩.tar.gz文件需要什么命令?
我从客户端收到一个巨大的.tar.gz文件,其中包含约800 mb的图像文件(未压缩时)。我们托管公司的ftp速度非常慢,因此在本地提取所有文件并通过ftp发送它们是不切实际的。我可以将.tar.gz文件通过ftp传输到我们的托管站点,但是当我将ssh放入目录并尝试使用解压缩时,它给了我这个错误: [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 …
829 tar  compression  extract  gzip  unzip 

6
解压缩错误“找不到中央目录结尾签名”
我尝试解压缩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 





1
无法解压缩文件
尝试解压缩文件,所以我尝试以下命令对不起,即时通讯对Linux真的很新 顺便说一句,这是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”的解压缩来提取一个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 


6
列出少于特定数量的zip文件
我.zip在一个文件夹中有数千个文件。我希望找到哪些压缩文件少于15个文件。 我知道unzip -l可以列出zip文件的内容,但是我不知道如何创建少于15个文件的zip文件输出。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.