标签:
1.tar打包命令
把jdk1.7.0.45文件夹打包
tar -cvf jdk.tar.gz jdk1.7.0.45/ (压缩)
打包完成之后会在当前目录生成jdk.tar.gz文件
tar -xvf jdk.tar.gz (解压)
注意,解压的时间不能用-zxvf,只需要-xvf就行了,原因是压缩的时候没有用gzip格式压缩
使用-zxvf会报错
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
标签:
原文地址:http://www.cnblogs.com/liuchao102/p/4506133.html