TAR.7Z (T7Z)到TGZ (TAR.GZ)转换器

在线免费转换您的tar.7z文件为tgz文件

放置文件在这里. 1 GB 最大文件大小 或者 注册
Facebook Amazon Microsoft Tesla Nestle Walmart L'Oreal

如何转换TAR.7Z到TGZ

1

从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.

2

选择tgz或任何其他你需要的格式作为结果(支持超过200种格式)

3

让文件进行转换随后你可以下载你的tgz文件

关于格式

TAR.7Z is a compound archive format that combines the TAR) container with 7-Zip's LZMA/LZMA2 compression. The TAR layer bundles multiple files into a single stream preserving Unix metadata (permissions, ownership, symlinks), while the outer 7Z compression applies LZMA or LZMA2 to the entire stream. This combination leverages LZMA's superior compression ratios — typically 30-70% better than gzip — making TAR.7Z one of the most space-efficient archive formats for Unix-style backups and software distribution. The solid-stream approach means compression can exploit redundancy across all archived files rather than compressing each file independently. One advantage is maximum compression density: the TAR.7Z combination often produces the smallest archives among common Unix archive+compression pairings. Broad tool support is another strength — tar and 7-Zip are available on all major platforms, and many modern tar implementations can create and extract TAR.7Z archives directly with the appropriate flag. The format is popular for distributing large source code trees and backup archives where minimizing transfer size justifies the additional compression time.
开发者: Igor Pavlov
首次发布: 1999
TGZ(也写作 .tar.gz)是类 Unix 系统上使用最广泛的复合归档格式,将 TAR) 归档与 gzip 压缩相结合。gzip 由 Jean-loup Gailly 和 Mark Adler 创建,于 1992 年 10 月 31 日首次发布,作为 Unix compress 工具的免费、无专利限制替代品。TAR 层将文件与完整的 Unix 元数据(权限、所有者、时间戳、符号链接、硬链接)打包成单个顺序数据流,gzip 使用 Deflate 算法(LZ77 字典匹配与霍夫曼编码的组合)对其进行压缩。生成的 .tar.gz 或 .tgz 文件是 Linux 和 Unix 平台上分发源代码、创建系统备份和打包软件的标准格式。TGZ 的一大优势是近乎普遍的支持 — TGZ 文件可在每个 Unix 系统、Windows(通过 7-Zip、WinRAR)和 macOS 上原生创建和解压,使其在接收方平台未知时成为最安全的选择。快速解压是另一项实用优势:gzip 解压速度明显快于 bzip2 或 xz,这对 CI/CD 流水线、容器映像层和自动化部署等对解压时间敏感的场景至关重要。GNU tar 通过 -z 标志原生支持 TGZ,该格式还是许多更高层级打包系统的基础。虽然 XZ 提供更好的压缩率,但在广泛兼容性和解压速度为优先考量时,TGZ 仍是默认选择。
首次发布: 1992年10月31日