AIX lower tar to unpack the problem

Today, installed under AIX tomcat, uploaded version is apache-tomcat-6.0.41.tar.gz, but the following problem extracting with tar:

# tar xvf apache-tomcat-6.0.41.tar.gz
tar: 0511-169 A directory checksum error on media; 0 not equal to 66604.

The initial thought that the installation media is not complete, so download another version 6.0.36 from the Internet, but still the problem occurs when decompressed.

Solution:

1> first gz compressed tar file into a format

# gunzip -S tgz apache-tomcat-6.0.41.tar.gz

2> can extract the tar command

# Tar -xvf apache-tomcat-6.0.41.tar

Reference blog: http: //blog.csdn.net/andkylee/article/details/5380676

Guess you like

Origin www.cnblogs.com/gakuki/p/11982484.html
tar