tar退出失败…?

我正在解除这个命令tar -pxvzf filename.tar.gz一切似乎都很好,但它意外退出下面的错误。 是有原因,我收到这个错误和/或阻止它?

 tar: Exiting with failure status due to previous errors 

遵循回复并删除-v的人的build议。 这是输出错误(见下文)。 这是joomla cms站点的备份。 任何想法会导致这些错误? 我唯一能做的就是caching和tmp文件夹可能会导致它与它可能有的奇怪的字符

 tar: Archive contains `nsion.pd' where numeric mode_t value expected tar: Archive contains `Party.pd' where numeric mode_t value expected tar: Archive contains `manent C' where numeric mode_t value expected tar: Archive contains `ial Circ' where numeric mode_t value expected tar: Archive contains `pdf0444' where numeric mode_t value expected tar: Archive contains `pring 20' where numeric mode_t value expected tar: Archive contains `.pdf444' where numeric mode_t value expected tar: Archive contains `pdf0444' where numeric mode_t value expected tar: Archive contains `up from ' where numeric mode_t value expected tar: Archive contains `ting.pdf' where numeric mode_t value expected tar: Archive contains `on.pdf4' where numeric mode_t value expected tar: Archive contains `f100444' where numeric mode_t value expected tar: Archive contains `ptions t' where numeric mode_t value expected tar: Archive contains `f100444' where numeric mode_t value expected tar: Archive contains `pdf0444' where numeric mode_t value expected tar: Archive contains `f100444' where numeric mode_t value expected tar: Archive contains `ter.pdf' where numeric mode_t value expected tar: Archive contains `ted.pdf' where numeric mode_t value expected tar: Archive contains `df00444' where numeric mode_t value expected tar: Archive contains `Inc..pdf' where numeric mode_t value expected tar: Archive contains `d.pdf44' where numeric mode_t value expected tar: Archive contains `Network.' where numeric mode_t value expected tar: Archive contains `df00444' where numeric mode_t value expected tar: Archive contains `rship Aw' where numeric mode_t value expected tar: Archive contains `.pdf444' where numeric mode_t value expected tar: Archive contains `ition.pd' where numeric mode_t value expected tar: Archive contains `df00444' where numeric mode_t value expected tar: Archive contains `9.pdf44' where numeric mode_t value expected tar: Archive contains `1.pdf4' where numeric mode_t value expected tar: Exiting with failure status due to previous errors 

你的命令将会调用tar来调用gunzip来解压文件。 您可以使用两个命令来检查文件损坏等可能的错误,如下所示:

 $ gunzip filename.tar.gz 

以上命令将生成文件filename.tar 。 那么,你可以使用:

 $ tar -pxvf filename.tar 

这应该可以帮助您debugging问题。 您也可以从命令中删除-v来禁用文件列表,这可能会帮助您只关注错误消息。