tar解压出错

现象

# tar -zxvf aaa.tar.gz 
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Error exit delayed from previous errors


解决办法

# gzip -d  aaa.tar.gz

# tar -zxvf aaa.tar 





原文地址:https://www.cnblogs.com/riskyer/p/3291950.html