-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
# HTPBZ2 | ||
TMZ a Tar Parallel-BZip2 Compressor / Decompressor | ||
|
||
This is a simple tool to compress and decompress files and dirs | ||
This is a simple tool to compress and decompress files and dirs. | ||
|
||
The special things about this tool are: | ||
- The compression is done through tar archiving tool and a parallelized BZip2 passage. Thus improving compression speed | ||
- This app can handle Haiku specific attributes, saving them to the archive and restoring them to their relative files at decompression time. | ||
- At your will you can save extra file and attribute checksums to check the integrity of decompressed files and attributes | ||
- You can select the methods of compression and decompression: a single threaded process handled entirely by tar library to compress and decompress the archive OR a multi-threaded compression and a multi-threaded attributes extraction for boosted performances | ||
- If you choose the boosted performances (which will require more system resources) you can also choose if work entirely on disk, or do partial process entirely in ram, thus saving disk writes and improving process speed | ||
- You can select the compression level for your archive compression | ||
- You can also select how many processors/cores use for your compression/decompression | ||
- You can also select how many processors/cores to use for your compression/decompression | ||
- And you can select the block size to elaborate with tar and bz2 |