What is TAR? TAR is a short name for Tape ARchive, a file format
standardized as part of POSIX.1-1988.
Some technical notes on TAR file format:
TAR file format is used to store multiple files into a single archive file.
Initially, TAR file format is designed for tape archive purposes.
TAR files are organized into blocks of bytes with a block size of 512 bytes.
Each file archived in a TAR file has a header block recording file name, file size, and other file attributes.
The last block of each archived file is padded with binary zeros, 0x00.
At the end of a TAR file, one extra block with binary zeros, 0x00, is added.
TAR file format does not support any compression.
TAR file format is commonly used together with the GZIP file format to archive and compress multiple files
into a single file, with a file extension called ".tgz" or ".tar.gz".
TAR is the file extension for TAR files.
TAR files are binary files.
Here are the first 64 bytes of a sample TAR file dumped in HEX values: