***********************************************************
选摘
请问哪位高手可以告诉我如何压缩和解压 *.tar.gz 的文件
我原来用linux可以直接 tar cvzf file 现在solaris 不行了
去上下在tar的包,
pkgadd -d tar* 来安装,
然后:
# /usr/local/bin/tar cvzf file 就可以了。
solaris系统带的tar好象是不能认长文件名,大概是这个意思。
# gzip -d file.tar.gz 解出file.tar的文件。
但是:# tar xvf file.tar 有的时候也会出问题的,就是你的文件有长文件名。
********************************************************************
格式 tar (打包)
压缩命令 tar cvf filename.tar dirname
tar cvf devicename dirname
解压命令 tar xvf filename.tar
tar xvf devicename
格式 gz
压缩命令 gzip filename
解压命令 gunzip filename.gz
gzip -d filename.gz
格式 bz2
压缩命令 bzip2 -z filename
解压命令 bzip2 -d filename.bz2
bunzip2 filename.bz2
格式 Z
压缩命令 compress filename
解压命令 uncompress filename.Z
格式 zip
压缩命令 zip filename.zip filename
解压命令 unzip filename.zip
格式 jar
压缩命令 jar cvf filename.jar dirname
解压命令 jar xvf filename.jar
Note – The jar command and the zip command create compatible files.
The unzip command can uncompress a jar file, and the jar command
can uncompress a zip file.
阅读(1495) | 评论(0) | 转发(0) |