On Wed, Nov 5, 2008 at 2:38 PM, Nickolay Hodyunya <[EMAIL PROTECTED]> wrote:
> How to extract lzma archives?

by lzma archive, you probably mean a lzma-compressed tar archive.
You can extract them with
lzma -dc compressedarchive.tar.lzma | tar -xv -f -
or, if your version of tar supports it,
tar --lzma -xv -f compressedarchive.tar.lzma

The command lzma comes from app-arch/lzma-utils, and these days the
distros ship it by default.

-- 
Software is like sex: it is better when it is free - Linus Torvalds

Reply via email to