一、文件压缩
1、gzip
压缩文件
gzip 文件路径
解压文件
gzip -d 文件路径
2、bzip2
压缩文件
bzip2 文件路径
解压文件
bzip2 -d 文件路径
3、xz
压缩文件
xz 文件路径
解压文件
xz -d 文件路径
二、文件打包--tar
1、创建打包文件
tar -cf 打包文件名 源文件
[root@node01:test]$ tar -zcvf document2.tar document
2、解压文件包
tar -xf 打包文件名 目标文件夹
[root@node01:test]$tar -zxvf document.tar document
3、查看文件包中的文件
tar -tvf 文件包名
[root@node01:test]$tar -zxvf document.tar document
4、调用gzip打包、解压文件
tar -zcf 压缩文件名 源文件 (-z:调用gzip压缩文件)
tar -zxf 压缩文件名 源文件 (-z:调用gzip解压文件)
5、调用bzip2打包、解压
tar -cjf 压缩文件名 源文件 (-j:调用bzip2压缩文件)
tar -xjf 压缩文件名 源文件 (-j:调用bzip2压缩文件)
6、调用xz打包、解压文件
tar -cJf 压缩文件名 源文件 (-J:调用xz压缩文件)
tar -xJf 压缩文件名 源文件 (-J:调用xz压缩文件)