Archive VS Compress
多个文件打包成一个文件利于传输/备份, 这里是 Archive.
大文件压缩成小文件可以节省磁盘空间和利于网络下载, 这里是 Compress.
打包和压缩是两个非常重要的概念, 尤其是区分这两者. 打包文件是一系列文件/文件夹的组合, 包文件占据相同或者更大的磁盘空间. 压缩文件是一系列文件/文件夹的特殊组合, 它占据更小的磁盘空间.
Compress tools
bzip2/bunzip2
gzip/gunzip
Archive tools
tar
- -c — create a new archive
- -f — when used with the -c option, use the filename specified for the creation of the tar file; when used with the -x option, unarchive the specified file
- -t — show the list of files in the tar file
- -v — show the progress of the files being archived
- -x — extract files from an archive
- -z — compress the tar file with gzip
- -j — compress the tar file with bzip2