ckolivas / lrzip

Long Range Zip
http://lrzip.kolivas.org
GNU General Public License v2.0
619 stars 76 forks source link

lrztar doesn't accept -U option #24

Closed nemobis closed 9 years ago

nemobis commented 11 years ago

$ lrztar -lDU $dir

Cannot have -U and stdin, unlimited mode disabled.

It could fallback to creating a temporary tar file; doing it manually is tedious.

ckolivas commented 9 years ago

The warning does not stop it from compressing successfully.

kenorb commented 9 years ago

The same problem in here, I'd like to try the Ultimate option as the normal mode doesn't give any more benefits than the standard zip file.

$ lrztar -fUz -o my_file.tar.lrz MyDir/

Any workaround?

ckolivas commented 9 years ago

Do it in 2 steps? Tar it then lrzip it. lrztar is just a very simple wrapper, not a real archiving tool so it's not smart enough to know when it won't fit in ram and then change from STDIO to using temporary files. tar cf my_file.tar MyDir/ lrzip -DUz my_file.tar