Sponsored Content
Full Discussion: Compress.exe Question
Top Forums UNIX for Dummies Questions & Answers Compress.exe Question Post 302283609 by brown on Tuesday 3rd of February 2009 04:00:27 PM
Old 02-03-2009
My theory is that the tar can't be compressed so the Compress process will add stuff in and that is resulting in a bigger file?
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

.exe file

Hello all, how to run windows .exe file in Linux and vice the versa (3 Replies)
Discussion started by: rajashekaran
3 Replies

2. Programming

how To edit exe to insert a serial no wich can be usd by runing exe

At time of installation I have to open the resource. and i have to insert a string serial number in the exe. please provide me code to edit the exe (in solaris) to insert a serial number which can be used by exe at run time. (6 Replies)
Discussion started by: ssahu
6 Replies

3. SuSE

does exe

does exe files works withe suse am new n linux system and were can i find msn 4 linux (2 Replies)
Discussion started by: abdulla
2 Replies

4. UNIX for Dummies Questions & Answers

.exe files

how to open .exe file in freebsd system.My work is to run a growth.exe(created by growth.c turbo c 3.0 file).how to run that exe file in freebsd system?Thanks in advance help me (8 Replies)
Discussion started by: kumarangopi
8 Replies

5. Programming

running exe

how we can run the exe when the system starts. (2 Replies)
Discussion started by: phani_sree
2 Replies

6. Programming

exe

Is it possible to extract c program,from its executable file(.exe)? i mean we dont have program but its exe file only which runs,can we retrieve the program? if yes how? if no why? (2 Replies)
Discussion started by: unknown9
2 Replies

7. UNIX for Dummies Questions & Answers

Issue: Compress in unix server and FTP to windows and open the compress file using Winzip

Hi All ! We have to compress a big data file in unix server and transfer it to windows and uncompress it using winzip in windows. I have used the utility ZIP like the below. zip -e <newfilename> df2_test_extract.dat but when I compress files greater than 4 gb using zip utility, it... (4 Replies)
Discussion started by: sakthifire
4 Replies

8. Programming

How to build .exe from c

All, I have never comipled C code before and would appricaite if anyone could tell me how to build a .exe from a C program. Thanks in advance. (5 Replies)
Discussion started by: thana
5 Replies

9. Shell Programming and Scripting

find and compress question

I am trying to accomplish follow 1- search $dir_find for \*.txt\* 2- exclude 2 directories $dir_find/abc/* and $dir_find/fit* 3- compress find result 4- move all compressed file to different directory Here is what I have tried. How/where can I add mv?? Can I add to same line/command? ... (1 Reply)
Discussion started by: Jang
1 Replies

10. Programming

exe

hello everyone, could somebody tell me where can i find some good exercises on signals,processes and threads? actually i need to find some solved exercises in system programming. tnx (4 Replies)
Discussion started by: micy
4 Replies
PIGZ(1) 						    BSD General Commands Manual 						   PIGZ(1)

NAME
pigz, unpigz -- compress or expand files SYNOPSIS
pigz [-0..9cdfhiKkLlNnqRrTtz] [-b blocksize] [-p threads] [-S suffix] [file ...] unpigz [-cfhiKkLlNnqRrTtz] [-b blocksize] [-p threads] [-S suffix] [file ...] DESCRIPTION
pigz compresses using threads to make use of multiple processors and cores. The input is broken up into 128 KB chunks with each compressed in parallel. The individual check value for each chunk is also calculated in parallel. The compressed data is written in order to the out- put, and a combined check value is calculated from the individual check values. The compressed data format generated is in the gzip, zlib, or single-entry zip format using the deflate compression method. The compression produces partial raw deflate streams which are concatenated by a single write thread and wrapped with the appropriate header and trailer, where the trailer contains the combined check value. Each partial raw deflate stream is terminated by an empty stored block (using the Z_SYNC_FLUSH option of zlib(3)), in order to end that par- tial bit stream at a byte boundary. That allows the partial streams to be concatenated simply as sequences of bytes. This adds a very small four to five byte overhead to the output for each input chunk. The default input block size is 128K, but can be changed with the -b option. The number of compress threads is set by default to the number of online processors, which can be changed using the -p option. Specifying -p 1 avoids the use of threads entirely. The input blocks, while compressed independently, have the last 32K of the previous block loaded as a preset dictionary to preserve the com- pression effectiveness of deflating in a single thread. This can be turned off using the -i or --independent option, so that the blocks can be decompressed independently for partial error recovery or for random access. Decompression can't be parallelized, at least not without specially prepared deflate streams for that purpose. As a result, pigz uses a sin- gle 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. Parallel decompression can be turned off by specifying one process (-dp 1 or -tp 1). Compressed files can be restored to their original form using pigz -d or unpigz. OPTIONS
-#, --fast, --best Regulate the speed of compression using the specified digit #, where -1 or --fast indicates the fastest compression method (less compression) and -9 or --best indicates the slowest compression method (best compression). Level 0 is no compression. -b, --blocksize mmm Set compression block size to mmm K (default 128KiB). -c, --stdout, --to-stdout Write all processed output to stdout (won't delete). -d, --decompress, --uncompress Decompress the compressed input. -f, --force Force overwrite, compress .gz, links, and to terminal. -h, --help Display a help screen and quit. -i, --independent Compress blocks independently for damage recovery. -K, --zip Compress to PKWare zip (.zip) single entry format. -k, --keep Do not delete original file after processing. -L, --license Display the pigz license and quit. -l, --list List the contents of the compressed input. -N, --name Store/restore file name and mod time in/from header. -n, --no-name Do not store or restore file name in/from header. -p, --processes n Allow up to n processes (default is the number of online processors) -q, --quiet, --silent Print no messages, even on error. -r, --recursive Process the contents of all subdirectories. -S, --suffix .sss Use suffix .sss instead of .gz (for compression). -T, --no-time Do not store or restore mod time in/from header. -t, --test Test the integrity of the compressed input. -V, --version Show the version of pigz. -v, --verbose Provide more verbose output. -z, --zlib Compress to zlib (.zz) instead of gzip format. COPYRIGHT NOTICE
This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any damages aris- ing from the use of this software. Copyright (C) 2007, 2008, 2009, 2010 Mark Adler <madler@alumni.caltech.edu> BSD
June 19, 2010 BSD
All times are GMT -4. The time now is 09:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy