Tag Archives: decompression

HOW TO COMPRESS AND DECOMPRESS FILES IN LINUX: tar

By | July 20, 2016

The next tool in line of compression tools is the tape archiver (tar). Though the command somewhat has some complex (though capable) set of command line options and syntax, like we have been doing with others we’ve talked about (gzip and bzip) you can quickly learn to use tar by remembering a few simple invocations… Read More »

HOW TO COMPRESS AND DECOMPRESS FILES IN LINUX: gzip and gunzip

By | July 19, 2016

GNU ZIP (“gzip”) is another compressing command tool commonly used in Linux. Just like the bzip2 program it is used to compress files while the “gunzip” is used to decompress files. The file extension of files compressed with gzip end with ‘.gz’. for example; gzip file_name For example; gzip memo.txt The end product (the compressed… Read More »