Packaging compression
Windows:
. rar. zip
WinRAR zip 7zip good pressure
linux:.tar.gz. tar.bz2. zip. xz
Gzip bzip2 and tar (packaged)
Packaged:
#tar CVF File.tar Packaged files ...
#tar CVF Abc.tar a b c d E
C Create
V Verbose
F file
Unpack
#tar xvf packaging files [-c/root/desktop]
X extract
-c Specifies the unpacking path
Gzip bzip2
Compression:
#gzip source File ...
#bzip2 source File ...
Extract:
#gunzip Compressed Files
#bunzip2 Compressed Files
#gzip-D Compressed files
#bzip2-D Compressed files
Package Compression together:
#tar cvzf file.tar.gz Source file ...
#tar cvjf file.tar.bz2 Source file ...
Unpack and unpack together:
#tar xvzf Compressed file [-C decompression Path]
#tar XVJF Compressed file [-C decompression Path]
View sub-Files inside compressed files
-T
#tar-TF Compressed Files
#tar-CJF etc3.tar.xz/etc
-j Call XZ
linux-Packing Compression