.taZ File Extension
.taZ file contains, how to open and verify it, how Poly supports it, and why its capitalization matters. File extension details for .taZ
Storage Only| File type | TAR archive compressed with Unix Compress |
|---|---|
| MIME type | |
| Encoding | Binary TAR stream wrapped in Unix Compress LZW coding |
| Operating systems | Windows, macOS, Linux |
| Opens with | GNU tar, GNU gzip, ncompress, 7-Zip |
| Poly support | Yes. Poly stores, syncs, shares, versions, and downloads .taZ files. |
| Indexed by Poly | Partial. Poly indexes the filename and basic file properties, not compressed data or TAR members. |
| Preview in Poly | No. Download the file to inspect or extract it with a compatible archive utility. |
| Poly agent | No. The Poly agent cannot read content inside the compressed archive. |
What kind of file is a .taZ?
A .taZ file is normally a TAR archive compressed with the historical Unix Compress utility. It is a short spelling of .tar.Z: TAR supplies the member directory, filenames, and metadata, while Compress wraps that complete TAR stream using adaptive Lempel-Ziv-Welch coding.1
The conventional media type is application/x-compress, although it is not registered by IANA.2 A Compress stream begins with hexadecimal bytes 1F 9D. Check those bytes and validate the stream because a suffix alone cannot establish the actual format.
.taZ with Unix Compress but associates lowercase .taz with Gzip. GNU gzip has also treated .taz as shorthand for .tar.Z, so lowercase names are historically ambiguous.13How do I open a .taZ on my computer?
- On Windows, 7-Zip can unpack both TAR and Unix Compress (
Z) data.4 - On macOS and Linux, GNU tar can recognize the compression signature and invoke a compatible decompressor. GNU gzip can decode traditional Compress streams, while ncompress provides the original-style
uncompressutility.13
List archive members before extracting an unfamiliar file:
tar -tf backup.taZ
Then extract into a new, empty directory. Review the listing for absolute paths, .. parent-directory references, symbolic links, and unexpected executables. A small compressed file can also expand into a much larger archive, so apply sensible storage and resource limits.
Poly support for .taZ
Poly stores, syncs, shares, versions, downloads, and finds .taZ files by name. Poly does not currently infer Unix Compress from this shorthand, decompress its payload, index its TAR members, generate a thumbnail, or provide an in-app archive preview. The Poly agent cannot read the compressed contents.
If you need content search, previews, or agent access, extract the archive with a trusted local tool and add the resulting supported files to Poly separately.
History of .taZ
The .taZ spelling combines the TAR name with the uppercase .Z convention used by Unix Compress. Spencer W. Thomas released the first compress implementation in July 1984, and a portable version entered the BSD lineage in 1985.5 The utility became common for Unix software distributions and backups.
Patent concerns surrounding LZW later helped motivate GNU Gzip as a free replacement. Modern GNU tar retains .taZ and Compress support mainly for compatibility with older collections.13
Working with .taZ and alternatives
Unix Compress has no checksum over the original uncompressed bytes. A successful decode therefore does not prove that an archive is intact or authentic. Verify an external digest when one is available, then inspect the TAR member list before extraction.3
For a modern replacement, decompress the outer stream to recover the TAR archive, then recompress that stream:
| Suffix | Compression | Practical fit |
|---|---|---|
.tar.gz | Gzip | Broad compatibility |
.tar.xz | XZ | Smaller distribution archives when encode speed matters less |
.tar.zst | Zstandard | Fast modern compression and decompression |
Renaming backup.taZ to one of these suffixes does not convert it. Preserve the TAR payload, choose the new compressor explicitly, and keep a verified original when handling archival material.
Footnotes
- Free Software Foundation. GNU tar: Creating and Reading Compressed Archives. The manual maps
.taZto Compress,.tazto Gzip, and documents signature-based decompression. ↩ ↩2 ↩3 ↩4 - Internet Assigned Numbers Authority. Media Types Registry. The application registry does not include
application/x-compress. ↩ - Free Software Foundation. GNU Gzip Manual. The manual documents
.Zdecoding,.tazbehavior, and the Compress format's lack of a consistency check. ↩ ↩2 ↩3 ↩4 - 7-Zip. 7-Zip. The official format list includes TAR packing and unpacking and
Zunpacking on Windows. ↩ - ncompress project. ncompress History. The project records the 1984 first release, portable updates, and BSD adoption. ↩