tar -zxf解压问题

问题描述:

[root@localhost yum-iso-new]# tar -zxf hdf5-1.8.20-linux-centos7-x86_64-gcc485-shared.tar.gz
tar: 它似乎不像是一个 tar 归档文件
tar: 跳转到下一个头

tar: 由于前次错误,将以上次的错误状态退出

解决办法:

#gzip -d 生成个.tar结尾的文件
[root@localhost yum-iso-new]# gzip -d hdf5-1.8.20-linux-centos7-x86_64-gcc485-shared.tar.gz
#tar xvf 解压
[root@localhost yum-iso-new]# tar xvf hdf5-1.8.20-linux-centos7-x86_64-gcc485-shared.tar

猜你喜欢

转载自blog.csdn.net/ha_123_qq/article/details/81036366