You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried and work but eats lots of ram. Is there any optimization that could be implemented?
The text was updated successfully, but these errors were encountered:
marcominetti
changed the title
Pipe to pxz? Can the parallel algorithm support stdin?
Pipe to pxz? Can the parallel algorithm support stdin without eating RAM?
Dec 15, 2014
You may want to buffer both input and output like so:
dd if=/dev/sda conv=sync,noerror bs=16M | pxz -kvc -9 -T8 | dd of=out.xz bs=16M
With a SSD you might want to use a bigger buffer. Anyway, just use pv command in-between pipes to check out if performance improves.
I'd like to do something like:
dd if=/dev/sda bs=1M | pxz -kvc -9 -T8 > out.lzma
I've tried and work but eats lots of ram. Is there any optimization that could be implemented?
The text was updated successfully, but these errors were encountered: