Centos下解压后缀为gz文件提示:gzip: stdin: not in gzip format

[root@localhost ~]#curl -O http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz

[root@localhost ~]# tar -zxvf  libogg-1.3.2.tar.gz

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Error is not recoverable: exiting now

用-xvf解压还是提示:

[root@localhost ~]#tar -xvf  libogg-1.3.2.tar.gz

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Error is not recoverable: exiting now

file查看文件信息:

[root@localhost ~]# file  libogg-1.3.2.tar.gz

libogg-1.3.2.tar.gz: HTML document, ASCII text

是HTML文件。文件的下载链接不是直接指向文件,而是先指向一个页面,在这个页面里才是真的下载链接,所以我们通过wget curl下载的其实是一个页面。

解决:先从网站下载到PC机,解压后传到Linux服务器。

你可能感兴趣的:(Linux私房菜)