*.bin.gz怎么解压缩呀?

*.bin.gz怎么解压缩呀?

RT,知道的请回复,先谢谢了。
用gunzip  *.gz  即可,
chmod  +x    *.bin 即可执行程序
谢谢,我试一下
用file命令查看一下是什么文件,然后再用相应的程序来解压
引用:
$file *.bin.gz
谢谢MichaelBibby
[root@local test]# file fsavwks.4.15.4391.bin.gz
fsavwks.4.15.4391.bin.gz: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.0.0, statically linked, not stripped
什么意思呀?
[quote:9ced9d0282="fy66"]
[root@local test]# file fsavwks.4.15.4391.bin.gz
fsavwks.4.15.4391.bin.gz: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.0.0, statically linked, not stripped
什么意思呀?[/quote]
32位的应用程序
[root@localhost f-secure.anti-virus.v4.15.linux.working]# gunzip fsavser.4.15.4391.bin.gz

gunzip: fsavser.4.15.4391.bin.gz: not in gzip format
[root@localhost f-secure.anti-virus.v4.15.linux.working]# gzip fsavser.4.15.4391.bin.gz
gzip: fsavser.4.15.4391.bin.gz already has .gz suffix -- unchanged

[root@localhost f-secure.anti-virus.v4.15.linux.working]# gzip -d fsavser.4.15.4391.bin.gz

gzip: fsavser.4.15.4391.bin.gz: not in gzip format

[root@localhost f-secure.anti-virus.v4.15.linux.working]# chmod +x fsavwks.4.15.4391.bin.gz
[root@localhost f-secure.anti-virus.v4.15.linux.working]# chmod +x fsavser.4.15.4391.bin.gz

why not use "gunzip"?