千家信息网

tar: This does not look like a tar archive

发表于:2025-02-04 作者:千家信息网编辑
千家信息网最后更新 2025年02月04日,报错信息如下:# tar -zxvf extmail-1.2.tar.gztar: This does not look like a tar archivetar: Skipping to next
千家信息网最后更新 2025年02月04日tar: This does not look like a tar archive

报错信息如下:

# tar -zxvf extmail-1.2.tar.gz

tar: This does not look like a tar archive

tar: Skipping to next header

tar: Exiting with failure status due to previous errors

解决:

# file extmail-1.2.tar.gz

extmail-1.2.tar.gz: gzip compressed data, from Unix

# gzip -d extmail-1.2.tar.gz

# tar -xf extmail-1.2.tar

0