Welcome to the Linux Foundation Forum!
GZ or BZ2?
Scifer
Posts: 8
in Applications
Hi. I'd like to adopt a default compression algorithm to my files. It has to be the most linux friendly, have the highest compression rate and security. Instantly I thought in tar.gz and tar.bz2. But I don't know their main differences. Witch one should I chose?
0
Comments
-
A simple comparison review of linux compression tools is at http://wj32.wordpress.com/2008/04/27/comparison-of-compression-programs-on-linux-2625tar/ , you also have xz (http://tukaani.org/xz/) and 7zip which is not installed in most base installations.
Here is what I ran to test various compress algorithms.
File: linux-2.6.36-rc4
Uncompressed Size: 454M
tar.gz
Time: 25.546s
New Size: 88M
Compression Percent: 80.6%
7zip
Time: 4m 0.327s
New Size: 61M
Compression Percent: 86.6%
xz
Time: 6m 6.009s
New Size: 59M
Compression Percent: 87.0%
tar.bz2
Time: 1m 41.552s
New Size: 52M
Compression Percent: 88.5%
By what I have heard xz is supposed to be much better than bz2 or gz, but it may just be my archive contents that restricted the compression. In the end you will have to create compressed archives with the various algorithms on a realistic sample and decide which best files your speed, compression and system load needs.0 -
Scifer wrote:It has to be the most linux friendly, have the highest compression rate and security.
I know that the format rar is can add a defined amount of redundancy to an archive, thus making the archive more robust when it comes to corruption; the catch is that the rar format isn't open. I don't think that GNU tar has the same feature built in, but third party utilities might provide something similar.
When it comes to efficiency, all tests I have seen so far indicate that the compression ratio of bz2 is superior to that of it's older counterpart gz, but that efficiency boost comes at the price of requiring more CPU time. I don't have anything to contribute regarding other formats (xz, 7z, etc); see Matthews excellent answer for some raw numbers on this issue.0 -
mfillpot wrote:A simple comparison review of linux compression tools is at wj32.wordpress.com/2008/04/27/comparison...ms-on-linux-2625tar/ , you also have xz (tukaani.org/xz/) and 7zip which is not installed in most base installations.0
-
jabirali wrote:What exactly do you refer to when you mention security? Do you want to password encrypt these archives, or are you looking for a format that is somewhat more resistant to corruption?0
-
jabirali wrote:the catch is that the rar format isn't open.0
-
I use both gz and bz2 for compression. Both are linux-friendly, so you don't have to worry about that.
Lets compare the two formats:
file.tar.gz : generally larger, but it takes less time to decompress
extraction command: tar -zxvf file.tar.gz
file.tar.bz2: generally smaller, but takes more time to decompress
extraction command: tar -jxvf file.tar.bz2
Now let's assess your needs: If you want to distribute your file online, I reccomend using bz2. This allows for faster downloads of said file. If you are running on a lower-end machine with a faster internet connection, than by all means use gz. This will allow for faster decompression, but download time will suffer.
To conclude: Both formats are (basically) useable accross Linux systems, you just have to decide which format meets your needs best.0
Categories
- 8.8K All Categories
- 13 LFX Mentorship
- 66 LFX Mentorship: Linux Kernel
- 355 Linux Foundation Boot Camps
- 228 Cloud Engineer Boot Camp
- 67 Advanced Cloud Engineer Boot Camp
- 23 DevOps Engineer Boot Camp
- 4 Cloud Native Developer Boot Camp
- 738 Training Courses
- 14 LFC110 Class Forum
- 16 LFD102 Class Forum
- 96 LFD103 Class Forum
- 2 LFD121 Class Forum
- 55 LFD201 Class Forum
- 1 LFD213 Class Forum - Discontinued
- 128 LFD232 Class Forum
- 14 LFD254 Class Forum
- 425 LFD259 Class Forum
- 78 LFD272 Class Forum
- 1 LFD272-JP クラス フォーラム
- 15 LFS200 Class Forum
- 686 LFS201 Class Forum
- LFS201-JP クラス フォーラム
- 271 LFS211 Class Forum
- 50 LFS216 Class Forum
- 23 LFS241 Class Forum
- 26 LFS242 Class Forum
- 18 LFS243 Class Forum
- 4 LFS244 Class Forum
- 7 LFS250 Class Forum
- LFS250-JP クラス フォーラム
- 105 LFS253 Class Forum
- 754 LFS258 Class Forum
- 7 LFS258-JP クラス フォーラム
- 48 LFS260 Class Forum
- 75 LFS261 Class Forum
- 6 LFS262 Class Forum
- 76 LFS263 Class Forum
- 14 LFS264 Class Forum
- 10 LFS266 Class Forum
- 8 LFS267 Class Forum
- 8 LFS268 Class Forum
- 5 LFS269 Class Forum
- 173 LFS272 Class Forum
- 1 LFS272-JP クラス フォーラム
- 184 LFW211 Class Forum
- 100 LFW212 Class Forum
- 876 Hardware
- 205 Drivers
- 74 I/O Devices
- 43 Monitors
- 115 Multimedia
- 204 Networking
- 98 Printers & Scanners
- 82 Storage
- 716 Linux Distributions
- 78 Debian
- 64 Fedora
- 12 Linux Mint
- 13 Mageia
- 22 openSUSE
- 125 Red Hat Enterprise
- 33 Slackware
- 13 SUSE Enterprise
- 344 Ubuntu
- 445 Linux System Administration
- 33 Cloud Computing
- 63 Command Line/Scripting
- Github systems admin projects
- 88 Linux Security
- 73 Network Management
- 105 System Management
- 45 Web Management
- 50 Mobile Computing
- 18 Android
- 19 Development
- 1.2K New to Linux
- 1.1K Getting Started with Linux
- 499 Off Topic
- 119 Introductions
- 193 Small Talk
- 19 Study Material
- 743 Programming and Development
- 237 Kernel Development
- 472 Software Development
- 899 Software
- 245 Applications
- 178 Command Line
- 2 Compiling/Installing
- 72 Games
- 313 Installation
- 19 All In Program
- 19 All In Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)