Home > OS >  tar.xz - how to check uncompressed files size without decompress whole archive
tar.xz - how to check uncompressed files size without decompress whole archive

Time:07-19

I have a problem with checking uncompressed size from archive tar.xz without extract whole archive. I know that for tar.gz I can use gzip or zcat but for tar.xz it dosnt work.

Any sugestion how to do this ?

CodePudding user response:

tar tvfa <file> will give you a list including file sizes. Check man tar for details. You should also note, that file size does not equate to disk usage, since part of a file can take a full file system block.

  • Related