Linux – Extract 7z files with standard linux tools

7-zipextractlinuxtar

I know that you can extract .7z files with 7-zip.

Is there another standard linux program that can do this? Maybe one of these

tar
bzip2
xz
gzip

I will add that bsdtar can do this, but is not available on all systems.

Best Answer

No. 7-Zip archives use LZMA and LZMA2, which are not supported by standard tools (they also use bzip2, but you still need to decode the header).

Related Question