About 15 results
Open links in new tab
  1. Are basic POSIX utilities parallelized? - Unix & Linux Stack Exchange

    Jun 25, 2020 · The oldest free tar implementation (star) on the other side is parallelized since 30 years with respect to the two basic tasks: There are two processes and a piece of shared …

  2. Adding a timeout to a parallelized call in Bash - Unix & Linux Stack ...

    Jan 11, 2020 · Adding a timeout to a parallelized call in Bash Asked 5 years, 5 months ago Modified 5 years, 5 months ago Viewed 1k times

  3. sed - How to wait for execution of parallelized processes and stitch ...

    How to wait for execution of parallelized processes and stitch together the outputs? Ask Question Asked 10 years, 6 months ago Modified 10 years, 6 months ago

  4. performance - Is there a parallel file archiver (like tar)? - Unix ...

    Is there something out there for parallel archiving of files? Tar is great, but I don't use tape archives, and it's more important to me that the archiving happens quickly (with compression …

  5. How does a parallelized Python program look with top command?

    I work on a shared cluster. I've seen people run parallelized c code on this cluster which, when I use top to see what processes are running, are shown to be using (for example) 400% of the …

  6. Parallelize a Bash FOR Loop - Unix & Linux Stack Exchange

    I have been trying to parallelize the following script, specifically each of the three FOR loop instances, using GNU Parallel but haven't been able to. The 4 commands contained within the …

  7. Parallelise rsync using GNU Parallel - Unix & Linux Stack Exchange

    Mar 13, 2015 · I have been using a rsync script to synchronize data at one host with the data at another host. The data has numerous small-sized files that contribute to almost 1.2TB. In …

  8. How to use multi-threading for creating and extracting tar.xz

    Sep 6, 2020 · I use tar -cJvf resultfile.tar.xz files_to_compress to create tar.xz and tar -xzvf resultfile.tar.xz to extract the archive in current directory. How to use multi threading in both …

  9. Efficiently delete large directory containing thousands of files

    You should probably rename the question to something more accurate, like "Efficiently delete large directory containing thousands of files." In order to delete a directory and its contents, …

  10. How to gzip 100 GB files faster with high compression?

    Oct 10, 2024 · I myself needed to compress a larger file of size approx. 256 GB, and I tested gzip, bzip2, xz, and their parallelized versions. In the end, I used pigz (man page). Downloaded it …