tar Saindo com falha…?

3

Estou desmarcando com este comando tar -pxvzf filename.tar.gz , tudo parece estar indo bem, mas, inesperadamente, sai com o erro abaixo. Existe uma razão pela qual recebo este erro e / ou o evito?

tar: Exiting with failure status due to previous errors

Seguiu a sugestão das pessoas que responderam e removeram o -v. Estes são os erros de saída (veja abaixo). Este é um backup de um site joomla cms. Alguma idéia do que causaria esses erros? A única coisa que eu poderia pensar é que as pastas cache e tmp podem estar causando isso com os caracteres estranhos que ele pode ter

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
    
por acctman 02.05.2012 / 15:59

1 resposta

3

Seu comando chamará tar , que invocará gunzip para descompactar o arquivo primeiro. Você pode usar dois comandos para verificar possíveis erros, como corrupção de arquivo, da seguinte maneira:

$ gunzip filename.tar.gz

O comando acima produzirá o arquivo filename.tar . Então, você pode usar:

$ tar -pxvf filename.tar

Isso deve ajudá-lo a depurar o problema. Você também pode remover o -v do comando para desativar a listagem de arquivos, o que pode ajudá-lo a se concentrar apenas nas mensagens de erro.

    
por 02.05.2012 / 16:04