1)从大型zip文件中提取
@H_301_2@我想从linux服务器上的大型zip文件(30Gb)中提取文件.有足够的可用磁盘空间.
@H_301_2@我试过jar xf dataset.zip.但是,按钮已满,出现错误,无法提取所有文件.
@H_301_2@我尝试解压缩,但zipfile损坏.
Archive: dataset.zip warning [dataset.zip]: 35141564204 extra bytes at beginning or within zipfile (attempting to process anyway) error [dataset.zip]: start of central directory not found; zipfile corrupt. (please check that you have transferred or created the zipfile in the appropriate BINARY mode and that you have compiled UnZip properly)@H_301_2@我尝试了zip -FF dataset.zip –out data.zip,并且输入太大的错误: @H_301_2@zip错误:条目太大而无法拆分,读取或写入(压缩效果不佳导致意外大量输入 – 请尝试-fz) @H_301_2@无论如何我能从高大的zip文件中有效地提取文件吗? @H_301_2@2)从大型zip文件中提取某些文件 @H_301_2@如果我只想要这个大型zip文件中的某些文件,那么我是否只能提取这些文件?例如,来自dataset.zip的data1.txt?似乎我不能使用任何zip或unzip命令(总是有zipfile损坏的问题). @H_301_2@谢谢!