关于tar的一些问题!

关于tar的一些问题!

不知为什么,我每次安装tar文件总提示有错误
tar zxvf  ***.tar.gz
提示如下;

[root@localhost 输入法]# ls
etc  fcitx-3.0.0.tar  linux.wbxl.tar.gz  readme.txt  test.txt  usr
[root@localhost 输入法]# tar zxvf fcitx-3.0.0.tar

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors


谢谢!![/img][/url]
先用file命令判断一下是什么格式:
[code:1]
$ file fcitx-3.0.0.tar
[/code:1]
然后根据它所给的类型,选用相应的工具来处理。

另外,*.tar格式的文件,应该是这个参数来解压:
[code:1]
$ tar -xf *.tar
[/code:1]
写段Shell脚本,以后就不用去判断什么类型的压缩文件,在不用在用不同的方法去解决了,打个脚本命令就可以了,方便多了