How to Create and Extract tar.gz and tar.bz2 files on Ubuntu / Linux
The most common compressed archive file format in Linux is the tar.gz format. Tar file is an archive file format. Tar.gz is a compressed tar file. Create tar.gz archives The tar command can be used to create tar.gz archives. tar czf new-tar-file-name.tar.gz file-or-folder-to-archive Here is the command explanation: c – create new archive. z -… Read More »