[root@localhost opt]# tar -zxvf eclipse.tar.gz
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
[root@localhost opt]#
gz格式用z
c是创建
x是解压缩
v是详细信息
f是指定文件
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
[root@localhost opt]#
参数 z 换成 j 还是没有成功
如果选择任何参数,却成功 即变成这样
tar -xvf eclipse.tar.gz
这是一些可选参数到含义(mark)
gz格式用z
c是创建
x是解压缩
v是详细信息
f是指定文件