I unzip using this :
unzip -q "file.zip" -d path
How can I unzip faster with utilizing multiple cores and threads?
Thanks
I unzip using this :
unzip -q "file.zip" -d path
How can I unzip faster with utilizing multiple cores and threads?
Thanks
In short: No, unzipping with multiple cores is not available.
The decompression normally has lower CPU-intensity than the compression (where multiple cores are often involved).
You wouldn't have much of an advantage anyway as the read/write-operations are more of the bottlenecks during decompression.
thy pigz which takes advantage of the multi cores and unzips in multiple threads
pigz uses a single thread (the main thread) for decompression, but will create three other threads for reading, writing, and check calculation, which can speed up decompression under some circumstances.
–
Abstemious © 2022 - 2024 — McMap. All rights reserved.
tar
archive. – Cerulean