目录
- linux文件管理--压缩打包
- 1.压缩打包介绍
- 2.gzip压缩工具
- 3.zip压缩工具
- 注意:
- 4.tar压缩工具
- 5.tar生产案例实践
linux文件管理--压缩打包
1.压缩打包介绍
windows
下我们接触最多的压缩文件就是.rar
格式, 但Linux
有自己所特有的压缩工具。
如果希望windows和Linux互相能使用的压缩工具, 建议.zip
格式
压缩打包的优点:
节省磁盘空间占用率
节省网络传输带宽消耗
网络传输更加快捷
linux 系统常见的压缩包类型:
格式 | 压缩工具 |
---|---|
.zip | zip压缩工具 |
.gz | gzip压缩工具,只能压缩文件,会删除源文件(通常配合tar使用) |
.bz2 | bzip2压缩工具,只能压缩文件,会删除源文件(通常配合tar使用) |
.tar.gz | 先使用tar命令归档打包,然后使用gzip压缩 |
.tar.bz2 | 先使用tar命令归档打包,然后使用bzip压缩 |
注意:
- Linux下常用压缩文件以.tar.gz结尾
- Linux下压缩文件必须带后缀
2.gzip压缩工具
gzip打包会删除源文件
#安装gzip压缩工具
[[email protected] ~]# yum install -y gzip
#创建文件
[[email protected] ~]# echo 123 >> file1
#压缩file1
[[email protected] ~]# gzip file1
#查看文件
[[email protected] ~]# ll
总用量 4
-rw-r--r-- 1 root root 30 6月 23 17:31 file1.gz
#查看文件类型
[[email protected] ~]# file file1.gz
file1.gz: gzip compressed data, was "file1", from Unix, last modified: Sun Jun 23 17:31:54 2019
#不需要解压,直接查看gzip压缩后的文件内容
[[email protected] ~]# zcat file1.gz
123
#解压文件
[[email protected] ~]# gzip -d file1.gz
#查看文件
[[email protected] ~]# ll
总用量 4
-rw-r--r-- 1 root root 4 6月 23 17:31 file1
3.zip压缩工具
zip
是压缩工具, unzip
是解压缩工具
-r :递归压缩
#安装zip压缩工具和解压工具
[[email protected] ~]# yum install -y zip unzip
#压缩文件为zip包
[[email protected] ~]# zip filename.zip filename
# 搬家 行李箱 衣物
#压缩目录为zip包
[[email protected] ~]# zip -r dir.zip dir/
#解压zip文件包, 默认解压至当前目录
[[email protected] ~]# unzip filename.zip
Archive: zls.zip
replace file1? [y]es, [n]o, [A]ll, [N]one, [r]ename:
替换 不替换 替换所有 啥也不做 改名
注意:
1.压缩不会删除源文件
2.解压不会删除压缩文件
3.解压开会覆盖源文件内容
4.tar压缩工具
tar
是linux
下最常用的压缩与解压缩, 支持文件和目录的压缩归档
#语法:tar [-zjxcvfP] filename
c //创建新的归档文件
x //对归档文件解包
t //列出归档文件里的文件列表
v //输出命令的归档或解包的过程
f //指定包文件名,多参数f写最后
C //指定解压目录位置
z //使用gzip压缩归档后的文件(.tar.gz)
j //使用bzip2压缩归档后的文件(.tar.bz2)
J //使用xz压缩归档后的文件(tar.xz)
X //排除多个文件(写入需要排除的文件名称)
h //打包软链接
P //连带绝对路径打包
--hard-dereference //打包硬链接
--exclude //在打包的时候写入需要排除文件或目录
//常用打包与压缩组合
czf //打包tar.gz格式
cjf //打包tar.bz格式
cJf //打包tar.xz格式
zxf //解压tar.gz格式
jxf //解压tar.bz格式
xf //自动选择解压模式
tf //查看压缩包内容
将文件或目录进行打包压缩
//以gzip归档方式打包并压缩
tar czf test.tar.gz test/ test2/
//以bz2方式压缩
tar cjf test.tar.bz2 dir.txt dir/
//打包链接文件,打包链接文件的真实文件
[[email protected] ~]# cd /
[[email protected] /]# tar czfh local.tar.gz etc/rc.local
#打包/tmp下所有文件
[[email protected] ~]# cd /
[[email protected] /]# find tmp/ -type f | xargs tar czf tmp.tar.gz
#打包/tmp下所有文件
[[email protected] /]# tar czf tmp.tar.gz | xargs find tmp/ -type f
#打包/tmp下所有文件
[[email protected] /]# tar czf tmp.tar.gz $(find tmp/ -type f)
排除文件,并打包压缩
#排除单个文件
[[email protected] /]# tar czf etc.tar.gz --exclude=etc/services etc/
#排除多个文件
[[email protected] /]# tar czf etc.tar.gz --exclude=etc/services --exclude=etc/rc.local etc/
[[email protected] /]# tar czf etc.tar.gz --exclude=etc/{services,passwd,shadow,gshadow,group}
#将需要排除的文件写入文件中
[[email protected] /]# cat paichu.list
etc/services
etc/rc.local
etc/rc.d/rc.local
#指定需要排除的文件列表, 最后进行打包压缩
[[email protected] /]# tar czfX etc.tar.gz paichu.list etc/
查看压缩文件
//查看压缩包内容和解压
[[email protected] /]# tar tf test.tar.gz
解压压缩文件
//解包或者解压缩
[[email protected] /]# tar xf test.tar.gz
//将tar.gz解压至其他目录
[[email protected] ~]# tar xf /etc/local.tar.gz -C /tmp
注意:
1. 不管是打包还是解压缩包,原文件是不会被删除的,但会覆盖当前已经存在的文件或者目录
2. 不要使用绝对路径
[[email protected] ~]# tar zcfP b.sh.tar.gz /usr/local/nginx/a.sh
解压的时候:[[email protected] ~]# tar xfP b.sh.tar.gz
2.tar 打包可以接多个文件f
[[email protected] ~]# tar zcf abc1.tar.gz 1.txt 2.txt 3.txt
5.tar生产案例实践
基础环境准备
[[email protected] ~]# yum install mariadb-server
[[email protected] ~]# systemctl start mariadb
[[email protected] ~]# mkdir /backup
案例1 mysql
物理备份及恢复
[[email protected] ~]# tar cJf /backup/mysql.tar.xz /var/lib/mysql
[[email protected] ~]# tar xf /backup/mysql.tar.xz -C /
案例2 mysql
物理备份及恢复
[[email protected] ~]# cd /var/lib/mysql
[[email protected] mysql]# tar cJf /backup/mysql.tar.xz *
[[email protected] mysql]# tar tf /backup/mysql.tar.xz
[[email protected] mysql]# tar xf /backup/mysql.tar.xz -C /var/lib/mysql
案例3 host A /etc
(海量小文件)---> host A /tmp
[[email protected] ~]# tar czf - /etc | tar xzf - -C /tmp
案例4 host A /etc
(海量小文件)---> host B /tmp
#常规方法
[[email protected] ~]# scp -r /etc [email protected]:/tmp
#建议方法:
#接收B主机, 需要监听端口
[[email protected] ~]# systemctl stop firewalld.service
[[email protected] ~]# nc -l 8888 |tar xzf - -C /tmp
#发送方A主机
[[email protected] ~]# tar -czf - /etc | nc 10.0.0.100 8888
tar: Removing leading `/' from member names
原文地址:https://www.cnblogs.com/gongjingyun123--/p/11153103.html
时间: 2024-10-13 21:26:36