How to extract filename.tar.gz file

后端 未结 8 2112
半阙折子戏
半阙折子戏 2020-12-12 12:47

I want to extract an archive named filename.tar.gz.

Using tar -xzvf filename.tar.gz doesn\'t extract the file. it is gives this error:

相关标签:
8条回答
  • 2020-12-12 13:27

    Check to make sure that the file is complete. This error message can occur if you only partially downloaded a file or if it has major issues. Check the MD5sum.

    0 讨论(0)
  • 2020-12-12 13:27

    The other scenario you mush verify is that the file you're trying to unpack is not empty and is valid.

    In my case I wasn't downloading the file correctly, after double check and I made sure I had the right file I could unpack it without any issues.

    0 讨论(0)
提交回复
热议问题