linux文件管理--压缩打包

目录

  • 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压缩工具

tarlinux下最常用的压缩与解压缩, 支持文件和目录的压缩归档

#语法: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

linux文件管理--压缩打包的相关文章

Linux下压缩某个文件夹(文件夹打包)

tar -zcvf /home/xahot.tar.gz /xahottar -zcvf 打包后生成的文件名全路径 要打包的目录 例子:把/xahot文件夹打包后生成一个/home/xahot.tar.gz的文件.zip 压缩方法:压缩当前的文件夹 zip -r ./xahot.zip ./* -r表示递归zip [参数] [打包后的文件名] [打包的目录路径]解压 unzip xahot.zip 不解释linux zip命令的基本用法是:linux zip命令参数列表:-a 将文件转成ASCI

Linux压缩打包方法连载之三:bzip2, bzcat 命令

Linux压缩打包方法有多种,本文集中讲解了bzip2, bzcat 命令的使用.案例说明,例如# 与 gzip 同样的,都是在计算压缩比的参数,-9 最佳,-1 最快. AD: 我们遇见Linux压缩打包方法有很多种,以下讲解了Linux压缩打包方法中的bzip2, bzcat 命令的概念,本文举了多种范例供大家查看,相信大家看完后会有很多收获.... bzip2, bzcat 命令[[email protected] ~]# bzip2 [-cdz] 档名[[email protected]

albert1017 Linux下压缩某个文件夹(文件夹打包)

tar -zcvf /home/xahot.tar.gz /xahottar -zcvf 打包后生成的文件名全路径 要打包的目录例子:把/xahot文件夹打包后生成一个/home/xahot.tar.gz的文件. # tar -xf all.tar 这条命令是解出all.tar包中所有文件,-x是解开的意思 zip 压缩方法: 压缩当前的文件夹 zip -r ./xahot.zip ./* -r表示递归zip [参数] [打包后的文件名] [打包的目录路径]解压 unzip xahot.zip

linux下文件打包、压缩详解

Linux平台下,有如下几种常见的压缩工具: ========================================================================= 工 具 文件扩展名 描述 ------------------------------------------------------------------------- bzip2 .bz2 采用Burrows-Wheeler块排序文本压缩算法和霍夫曼编码 compress .Z 原始的Unix文件压

Linux 常用的压缩打包命令行

LINUX 常用的压缩打包命令行: ==== 1.常用压缩命令: tar -zcvf xx.tar.gz xx 例子:tar -zcvf xx-20170614.sql.tar.gz xx-20170614.sql 2.解压缩 tar -zxvf xx.tar.gz 3.把打包压缩过的文件从服务器上下载到本地 scp [email protected]:/home/数据库名-20170614.sql.tar.gz E:/download/ 例子:scp [email protected]:/ho

linux的tar命令详情;linux多个文件压缩打包到一个压缩文件

tar命令 可以用来压缩打包单文件.多个文件.单个目录.多个目录. Linux打包命令_tar tar命令可以用来压缩打包单文件.多个文件.单个目录.多个目录. 常用格式: 单个文件压缩打包 tar czvf my.tar.gz file1 多个文件压缩打包 tar czvf my.tar.gz file1 file2,...(file*)(也可以给file*文件mv 目录在压缩) 单个目录压缩打包 tar czvf my.tar.gz dir1 多个目录压缩打包 tar czvf my.tar

Linux下的打包与压缩和tar命令!

本文介绍了linux下的打包压缩程序tar.gzip.gunzip.bzip2.bunzip2. compress.uncompress.zip.unzip.rar.unrar程序,以及如何使用它们对.tar..gz..tar.gz.. tgz..bz2..tar.bz2..Z..tar.Z..zip..rar这10种压缩文件进行操作. 在Windows下最常见的压缩文件就只有两种,一是.zip,另一个是.rar.而在linux下有它有.gz..tar.gz.tgz.bz2..Z压缩文件,当然.

linux下面的打包压缩命令

tar命令 tar [-cxtzjvfpPN] 文件与目录 ....linux下面压缩之前要把一堆文件打个包再压缩,即使只有一个文件也需要打个包.例子:tar czvf 1.tar.gz hello.sh --------->创建,gzip格式,v表示压缩过程中显示压缩文件名,f 使用档名,请留意,在 f 之后要立即接档名喔!不要再加参数!,对hello.sh文件进行打包压缩 例子:tar cjvf 1.tar.gz hello.sh ---------> 创建,bzip2格式,v表示压缩过程

linux压缩打包总结

1 压缩打包介绍 linux 下压缩文件有 Linux .zip,.gz,.bz2,.xz,.tar.gz,.tar.bz2,.tar.xz 2 gzip压缩工具 gzip 不能压缩目录 小测试: 压缩前期工作: [[email protected] tmp]# mkdir d6z  [[email protected] tmp]# cd d6z/ [[email protected] d6z]# find /etc/ -type f -name "*conf" -exec cat {