How can I set the compression level for this command?
tar --lzma -cf files/compressed/lzma/archive.lzma -C files/original/ . With --bzip I just use:
BZIP2=-9 tar --bzip2 -cf files/compressed/bzip2//archive.tar.bz2 -C files/original/ . but with the --lzma option LZMA=-9 doesn't work.
Is this enviroment variable name incorrect? Where can I get the correct variable name?
tar --helpis parameter--xzand--lzmawith descriptionfilter the archive through xzthey are not different comprimation methods?xzcan compress and decompresslzmafiles in most cases. Seeman xzfor details...