[root@www tmp]# unzip ezlamysql.zip unzip: cannot find or open ezlamysql.zip, ezlamysql.zip.zip or ezlamysql.zip.ZIP. [root@www tmp]# du -h ezlamysql.zip 3.1G ezlamysql.zip [root@www tmp]# cd .. [root@www www]# tar -xf ezla.mysql.tar tar: 它似乎不像是一个 tar 归档文件 tar: 跳转到下一个头 tar: Archive contains obsolescent base-64 headers [root@www www]# du -h ezla.mysql.tar 1.5G ezla.my...
unzip解压出来的都是些乱码文件名! 我复制了个windows下的zip文件(英文名的)到freebsd6.2里。 unzip了一下,里面的中文文件名都无法正常显示。 文件本身的内容,包括中文内容都正常。 就是文件名,文件夹名显示出为乱码! (还好不是显示出一堆????) -------------------------------------------------------------------------------------------- 另外我的xterm里能凑合着显示中文,但貌似不能输入中文。。。是要另装个什么te...
unzip mail-200-didi.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. [ 本帖最后由 angling2005 于 2006-3-29 20:41 编辑 ]
三种方法 1. #find . -name '*.zip' -exec unzip {} \; 2. #ls *.zip | xargs -n1 unzip 3. #for i in * >;do >;unzip $i >;done 另外:问一下第二个方法的具体意思.xargs和-n1
tar命令 tar 可以为文件和目录创建档案。利用tar,用户可以为某一特定文件创建档案(备份文件),也可以在档案中改变文件,或者向档案中加入新的文件。tar最初被用来在磁带上创建档案,现在,用户可以在任何设备上创建档案,如软盘。利用tar命令,可以把一大堆的文件和目录全部打包成一个文件,这对于备份文件或将几个文件组合成为一个文件以便于网络传输是非常有用的。linux上的tar是GNU版本的。 语法:tar [主选项+辅选项] 文件...
最近一直未解压文件而烦,转了一篇小小的总结:) linux下怎么解后缀名是gzip的文件? 1.以.a为扩展名的文件: #tar xv file.a 2.以.z为扩展名的文件: #uncompress file.Z 3.以.gz为扩展名的文件: #gunzip file.gz 4.以.bz2为扩展名的文件: #bunzip2 file.bz2 5.以.tar.Z为扩展名的文件: #tar xvZf file.tar.Z 或 #compress -dc file.tar.Z | tar xvf - 6.以.tar.gz/.tgz为扩展名的文件: #tar xvzf file.tar.gz 或 gzip...
linux软件扩展名 软件后缀为.rpm最初是Red Hat linux提供的一种包封装格式,现在许多linux发行版本都使用;后缀为.deb是Debain linux提供的一种包封装格式;后缀为.tar.gz、tar.Z、tar.bz2或.tgz是使用Unix系统打包工具tar打包的;后缀为.bin的一般是一些商业软件。 linux文件的属性基本上是与文件后缀没有绝对关系的...