CentOS打包和解压详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS打包和解压详解相关的知识,希望对你有一定的参考价值。

一、压缩和解压介绍

Linux下最常用的打包命令就是tar,使用tar命令打包后,就可以用其它的命令来进行压缩了。tar命令的使用方法
tar命令
[[email protected] ~]# tar [-cxtzjvfpPN] 文件与目录 ....
参数:
-c :建立一个压缩文件的参数指令(create 的意思);
-x :解开一个压缩文件的参数指令!
-t :查看 tarfile 里面的文件!
特别注意,在参数的下达中, c/x/t 仅能存在一个!不可同时存在!
因为不可能同时压缩与解压缩。
-z :是否同时具有 gzip 的属性?亦即是否需要用 gzip 压缩?
-j :是否同时具有 bzip2 的属性?亦即是否需要用 bzip2 压缩?
-v :压缩的过程中显示文件!这个常用,但不建议用在背景执行过程!
-f :使用档名,请留意,在 f 之后要立即接档名喔!不要再加参数!
-C(大写) : 目录  这个参数用在解压缩时,若要在特定目录解压缩,可以使用这个参数
-p :使用原文件的原来属性(属性不会依据使用者而变)
-P (大写):可以使用绝对路径来压缩!.
-N :比后面接的日期(yyyy/mm/dd)还要新的才会被打包进新建的文件中!
--exclude FILE:在压缩的过程中,不要将 FILE 打包!

其实最简单的使用tar的记忆方法:
压  缩:tar -zcvvf filename.tar.gz 要被压缩的文件或目录名称
查  看: tar -ztvf filename.tar.gz
解压缩: tar -zxvf filename.tar.gz -C 欲解压缩的目录


二、示例讲解

tar示例一:将整个 /etc 目录下的文件全部打包成为 /tmp/etc.tar
[[email protected] ~]# tar -cvf /tmp/etc.tar /etc <==仅打包,不压缩!
[[email protected] ~]# tar -zcvf /tmp/etc.tar.gz /etc <==打包后,以 gzip 压缩
[[email protected] ~]# tar -jcvf /tmp/etc.tar.bz2 /etc <==打包后,以 bzip2 压缩
[[email protected] ~]# ls -lh /tmp
total 36M
-rw-r--r--. 1 root root  22M Dec  4 04:38 etc.tar
-rw-r--r--. 1 root root 6.6M Dec  4 04:38 etc.tar.bz2
-rw-r--r--. 1 root root 7.4M Dec  4 04:38 etc.tar.gz
# 特别注意,在参数 f 之后的文件档名是自己取的,我们习惯上都用 .tar 来作为辨识。
# 如果加 z 参数,则以 .tar.gz 或 .tgz 来代表 gzip 压缩过的 tar file ~
# 如果加 j 参数,则以 .tar.bz2 来作为附档名啊~
在备份重要的系统数据时,我们可以利用-p参数保留原本文件的权限与属性
# 上述指令在执行的时候,会显示一个警告讯息:
# 『tar: Removing leading `/' from member names』那是关於绝对路径的特殊设定。


tar例二:在打包一个文件时,一般从要打包的目录或文件的上一层目录对其打包  
如果要打包这个文件和其绝对路径时,可以从/开始打包
[[email protected] ~]# tar -zcvf /tmp/etc1.tar.gz /tmp/dingjian   <==打包其文件dingjian与绝对路径
tar: Removing leading `/' from member names
/tmp/dingjian/
/tmp/dingjian/aa
/tmp/dingjian/dd
/tmp/dingjian/cc
/tmp/dingjian/bb
[[email protected] ~]# cd /tmp                <==在文件上一层目录只对这个dingjian这个文件进行打包
[[email protected] tmp]# tar -zcvf /tmp/etc2.tar.gz ./dingjian
./dingjian/
./dingjian/aa
./dingjian/dd
./dingjian/cc
./dingjian/bb
分别解压出来的路径:
[[email protected] ~]# ls
anaconda-ks.cfg  dingjian  install.log  install.log.syslog  tar.sh  tmp
[[email protected] ~]# tar -zxvf /tmp/etc1.tar.gz
[[email protected] ~]# tree tmp
tmp
└── dingjian
    ├── aa
    ├── bb
    ├── cc
    └── dd
[[email protected] ~]# tar -zxvf /tmp/etc2.tar.gz
1 directory, 4 files
[[email protected] ~]# tree dingjian
dingjian
├── aa
├── bb
├── cc
└── dd


tar示例三:查阅上述 /tmp/目录中各打包文件内有哪些文件?
[[email protected] ~]# tar -tvf /tmp/etc.tar
[[email protected] ~]# tar -jtvf /tmp/etc.tar.bz2
[[email protected] ~]# tar -ztvf /tmp/etc.tar.gz   
# 如果查看bz2 或gz压缩的文件就得要加上 j或z 这个参数了!这很重要的!


tar示例四:将 /tmp/etc.tar.gz 文件解压缩在 /usr/local/src 底下
[[email protected] /]# cd /usr/local/src
[[email protected] src]# tar -zxvf /tmp/etc.tar.gz
# 在预设的情况下,我们可以将压缩档在任何地方解开的!以这个范例来说,
# 我先将工作目录变换到 /usr/local/src 底下,并且解开 /tmp/etc.tar.gz ,
# 则解开的目录会在 /usr/local/src/etc 呢!另外,如果您进入 /usr/local/src/etc
# 则会发现,该目录下的文件属性与 /etc/ 可能会有所不同喔!


tar示例五:将/tmp/etc.tar.gz文件解压缩到指定的目录/root
[[email protected] ~]# tar -zxvf /tmp/etc.tar.gz -C /root
[[email protected] ~]# ls
anaconda-ks.cfg  etc  install.log  install.log.syslog  tar.sh


tar示例六:在 /tmp 底下,我只想要将 /tmp/etc.tar.gz 内的 etc/passwd 解开而已
[[email protected] tmp]# tar -ztvf etc.tar.gz |grep passwd
-rw-r--r-- root/root       146 2012-02-22 19:48 etc/pam.d/passwd
-rw-r--r-- root/root      1176 2013-11-05 05:52 etc/passwd-
-rw-r--r-- root/root      1176 2013-11-05 05:52 etc/passwd
-rw------- root/root         0 2013-02-22 08:16 etc/security/opasswd
[[email protected] tmp]# tar -zxvf /tmp/etc.tar.gz etc/passwd
etc/passwd
[[email protected] tmp]# ls -l etc
total 4
-rw-r--r--. 1 root root 1176 Nov  5 05:52 passwd
#我们通过tar -ztvf etc.tar.gz 结合管道grep来过滤找出passwd的所在位置
#在解压过程中etc/passwd不能客成/etc/passwd因为它是记录在etc.tar.gz内的文件名


tar示例七:将 /etc/ 内的所有文件备份下来,并且保存其权限!
[[email protected] ~]# tar -zxvpf /tmp/etc.tar.gz /etc
# 这个 -p 的属性是很重要的,尤其是当您要保留原本文件的属性时!


tar示例八:在 /etc 当中,比 2013/11/01 新的文件才备份
[[email protected]lhost tmp]# tar -N '2013/11/01' -zcvf etc_2013.tar.gz /etc


tar示例九:打包备份当前目录下dingjian文件夹 ,但不打包里面linuxfile文件
[[email protected] tmp]# tree dingjian
dingjian
├── 11
├── 22
├── 33
├── 44
├── 55
├── aa
├── bb
├── cc
├── dd
├── ee
├── linuxfile
├── q1
├── q2
└── q3.4

5 directories, 9 files
[[email protected] tmp]# tar --exclude ./dingjian/linuxfile -zcvf dingjian.tar.gz ./dingjian
./dingjian/
./dingjian/33/
./dingjian/aa
./dingjian/11/
./dingjian/55/
./dingjian/dd
./dingjian/ee
./dingjian/q2
./dingjian/cc
./dingjian/q1
./dingjian/bb
./dingjian/44/
./dingjian/q3.4
./dingjian/22/  
[[email protected] tmp]# tar -ztvf dingjian.tar.gz
drwxr-xr-x root/root         0 2013-12-04 09:04 ./dingjian/
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/33/
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/aa
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/11/
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/55/
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/dd
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/ee
-rw-r--r-- root/root         0 2013-12-04 09:04 ./dingjian/q2
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/cc
-rw-r--r-- root/root         0 2013-12-04 09:04 ./dingjian/q1
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/bb
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/44/
-rw-r--r-- root/root         0 2013-12-04 09:04 ./dingjian/q3.4
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/22/


tar示例十:打包备份当前目录下dingjian文件夹 ,但不打包里面字每开头为q的文件
[[email protected] tmp]# tree dingjian
dingjian
├── 11
├── 22
├── 33
├── 44
├── 55
├── aa
├── bb
├── cc
├── dd
├── ee
├── linuxfile
├── q1
├── q2
└── q3.4
[[email protected] tmp]# tar --exclude=./dingjian/q*  -zcvf myfile.tar.gz ./dingjian
./dingjian/
./dingjian/33/
./dingjian/aa
./dingjian/11/
./dingjian/55/
./dingjian/dd
./dingjian/ee
./dingjian/linuxfile
./dingjian/cc
./dingjian/bb
./dingjian/44/
./dingjian/22/
[[email protected] tmp]# tar -ztvf myfile.tar.gz
drwxr-xr-x root/root         0 2013-12-04 09:04 ./dingjian/
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/33/
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/aa
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/11/
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/55/
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/dd
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/ee
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/linuxfile
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/cc
-rw-r--r-- root/root         0 2013-12-04 09:02 ./dingjian/bb
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/44/
drwxr-xr-x root/root         0 2013-12-04 09:02 ./dingjian/22/


tar实例十一:工作环境实例:
打包站点目录/var/www/html  备份到/data 目录下(最好每次备份按时间
生成不同的备份包)
[[email protected] tmp]# tar -zcvf html_$(date +%F).tar.gz /var/www/html
tar: Removing leading `/' from member names
/var/www/html/
[[email protected] tmp]# ls
html_2013-12-04.tar.gz


tar示例十二:将 /etc/ 打包后直接解开在 /tmp 底下,而不产生文件!
[[email protected] ~]# cd /tmp
[[email protected] tmp]# tar -cvf - /etc | tar -xvf -
# 这个动作有点像是 cp -r /etc /tmp 啦~依旧是有其有用途的!
# 要注意的地方在於输出档变成 - 而输入档也变成 - ,又有一个 | 存在~
# 这分别代表 standard output, standard input 与管线命令啦!

以上是关于CentOS打包和解压详解的主要内容,如果未能解决你的问题,请参考以下文章

CentOS「linux」学习笔记8:压缩和解压类命令

centos里的压缩解压命令tar总结

[CentOS 7系列]压缩与打包(下)

CentOS下tar解压 gz解压 bz2等各种解压文件使用方法

Centos压缩&解压

CentOS下tar解压 gz解压 bz2等各种解压文件使用方法