I'm being impatient and would like tar and gzip to use more that one processor each. Anyone know of a multithreaded version, or patch out there? I'm running it on HP and Solaris machine and I am using the Gnu Tar.
Because you're processing one stream of data it doesn't lend itself well to multithreading; can you break the job down into smaller parts and run them in parallel? Annihilannic.
That's what I'm currently doing. I have 7 tar.gz files and I'm currently doing 7 simultaneous gunzip -c file.tar.gz |tar -xvf - . I just wanted to know if I could speed it up even more b/c it looks like the bottleneck is still the CPU.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.