运维之基础命令--打包与压缩

打包和压缩

将文件或文件夹合并成一个包,然后通过压缩算法进行数据压缩,减小包的体积,方便网络传输。

windows:
	zip
	rar

linux:
	zip
	tar
	gz
	bz2
	tar.gz
	tar.bz2

压缩算法:
	gzip
	bzip2

zip

是一个Windows和Linux中常用打包压缩工具,支持的压缩算法是zip。

zip工具需要安装
	yum install zip unzip -y

zip压缩一个文件

# 格式
	zip [参数] 压缩包名称  文件路径

[root@abc ~]# zip 123.zip 123.log 
  adding: 123.log (deflated 87%)
[root@abc ~]# ls -l
total 4732
-rw-r--r--  1 root root  646165 Mar  9 10:31 123.log
-rw-r--r--  1 root root   85296 Mar 11 11:58 123.zip

zip压缩文件夹

# 需要一个-r参数去递归压缩文件夹下的所有内容
[root@abc ~]# zip -r dir.zip dir/
  adding: dir/ (stored 0%)
  adding: dir/one/ (stored 0%)
  adding: dir/123.log (deflated 87%)

zip的静默输出

# -q:参数就是不输出任何打包信息
[root@abc opt]# zip -r -q etc.zip /etc/
[root@abc opt]# ls -l
total 14200
-rw-r--r-- 1 root root 13674457 Mar 11 12:15 etc.zip

zip解压命令(unzip)

# 格式
	unzip [参数] 压缩包路径

# unzip解压命令只能解压由zip打包的压缩文件
[root@abc ~]# unzip dir.zip 
Archive:  dir.zip
  inflating: dir/123.log             
[root@abc ~]# 

# 其他压缩包由unzip解压时随即报错。
[root@abc opt]# unzip nginx-.tar.gz
Archive:  nginx-.tar.gz
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
unzip:  cannot find zipfile directory in one of nginx-.tar.gz or
        nginx-.tar.gz.zip, and cannot find nginx-.tar.gz.ZIP, period.


# 查看压缩包中压缩那些内容,不解压?
# 只查看压缩包内容不解压需要使用 -l 参数
[root@abc opt]# unzip -l dir.zip 
Archive:  dir.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  03-11-2021 12:04   dir/
---------                     -------
        0                     1 file

# 解压到指定目录(-d)
[root@abc ~]# unzip -d /root/  etc.zip 
[root@abc opt]# cd /root/
[root@abc ~]# ls
]        anaconda-ks.cfg  dir.zip  index.html           test.pdf.gz  xxxeth0xxx           系统优化.md
123.log  demo.txt         etc      nginx-0.1.22.tar.gz  test.txt     上传与下载.md
123.zip  dir              eth0xxx  test                 xxxeth0      文件管理_(高级).pdf

# 静默输出(-q)
[root@abc ~]# rm -rf etc
[root@abc ~]# unzip -q -d /root/ /opt/etc.zip 
[root@abc ~]# ls -l
total 4828
drwxr-xr-x  91 root root    8192 Mar 11 11:16 etc

tar

tar压缩支持多种压缩算法

tar.gz gzip (用的最多)

tar.bz2 bzip2

gzip

通过gzip压缩算法,将文件压缩一定体积,有利于传输, 不支持打包

[root@abc ~]# ls -l
total 4828
-rw-r--r--   1 root root  244977 Mar 10 12:12 index.html
[root@abc ~]# gzip index.html 
[root@abc ~]# ls -l
total 4612
-rw-r--r--   1 root root   22652 Mar 10 12:12 index.html.gz

gzip压缩一个目录

[root@abc etc]# gzip -r /etc
[root@abc etc]# ls 
abrt                        GREP_COLORS.gz               my.cnf.d                 security
adjtime.gz                  groff                        my.cnf.gz                selinux
aliases.db.gz               group-.gz                    NetworkManager           services.gz
aliases.gz                  group.gz                     networks.gz              sestatus.conf.gz
alternatives                grub2.cfg                    nsswitch.conf.bak.gz     sgml
anacrontab.gz               grub.d                       nsswitch.conf.gz         shadow

gzip解压(-d)

[root@abc ~]# ls -l
-rw-r--r--   1 0 0   22652 Mar 10 12:12 index.html.gz
[root@abc ~]# gzip -d index.html.gz 
[root@abc ~]# ls -l
total 4828
-rw-r--r--   1 0 0  244977 Mar 10 12:12 index.html

bzip2

使用bzip2 压缩算法来压缩一定体积的文件。

[root@abc ~]# ls -l
total 4828
-rw-r--r--   1 root root  646165 Mar  9 10:31 123.log     
[root@abc ~]# bzip2 123.log 
[root@abc ~]# ls -l
total 4240
-rw-r--r--   1 root root       0 Mar 10 12:04 ]
-rw-r--r--   1 root root   42210 Mar  9 10:31 123.log.bz2

bzip2解压(-d)

bzip2解压是针对于bzip2压缩的压缩包来进行解压。

[root@abc ~]# ls -l
total 4240
-rw-r--r--   1 root root   42210 Mar  9 10:31 123.log.bz2
[root@abc ~]# bzip2 -d 123.log.bz2 
[root@abc ~]# ls -l
total 4828
-rw-r--r--   1 root root  646165 Mar  9 10:31 123.log

tar

tar其实是一个打包工具,不具备压缩功能,但是可以使用参数调用压缩工具来进行解压。

参数

  • -c : 创建压缩包

  • -f : 指定压缩包名称

    [root@abc ~]# tar -c -f test.tar 123.log 
    [root@abc ~]# ls -l
    total 5468
    -rw-r--r--   1 root root  655360 Mar 11 15:49 test.tar
  • -z : 指定使用gzip压缩工具进行压缩

    [root@abc ~]# tar  -c -z -f test-one.tar 123.log 
    [root@abc ~]# ls -l 
    total 5084
    -rw-r--r--   1 root root   85279 Mar 11 15:56 test-one.tar
    
    # 注:使用-z参数,不会自动添加.gz后缀
    
    [root@abc ~]# tar -c -z -f anaconda.tar.gz  anaconda-ks.cfg 
    [root@abc ~]# ls -l
    total 5084
    -rw-r--r--   1 root root    1010 Mar 11 15:58 anaconda.tar.gz
  • -j : 指定使用bzip2压缩工具进行压缩

    [root@abc ~]# tar -c -j -f 123-bask-one.tar 123.log 
    [root@abc ~]# ls -l
    total 5172
    -rw-r--r--   1 root root   42328 Mar 11 16:00 123-bak.tar.bz2
    -rw-r--r--   1 root root   42328 Mar 11 16:01 123-bask-one.tar
  • -J : 指定使用xz压缩工具进行压缩

    [root@abc test-tar]# tar -c -J  -f etc.tar.xz /etc/
    [root@abc ~]# ls -l
    -rw-r--r-- 1 root root 9493376 Mar 11 17:00 etc.tar.xz
  • -t : 查看压缩包内容

    [root@abc ~]# tar -t -f 123-bak.tar.bz2 
    123.log
    [root@abc ~]# 
  • -v : 显示压缩包压缩过程

    [root@abc ~]# tar -x -v -f etc.tar -C /opt/
    /etc/centos-release
    /etc/DIR_COLORS.lightbgcolor
    /etc/libaudit.conf
    /etc/mail.rc
  • -P : 允许使用绝对路径进行打包

    [root@abc ~]# tar -c -P -f 123-three.tar /etc/passwd
    [root@abc ~]# tar -c -f 123-three.tar /etc/passwd
    tar: Removing leading `/' from member names
    [root@abc ~]# 
  • -x : 解压

    # tar解压是按照原来的路径进行解压
    [root@abc test]# tar -x -f etc.tar 
    
    # tar会自动识别压缩功能
  • -C : 指定解压路径

    [root@abc ~]# tar -x -f etc.tar -C /opt/
    tar: Removing leading `/' from member names
    [root@abc ~]# cd /opt/
    [root@abc opt]# ls
    abc23  dir  dir.zip  etc  nginx-0.1.22.tar.gz  nginx-.tar.gz  xxx
    [root@abc opt]# 
  • –exclude : 排除某些文件

    [root@abc test-tar]# tar -c -f abc.tar ./* --exclude=abc7 --exclude=abc5   --exclude=abc1 
    [root@abc test-tar]# tar -t -f abc.tar 
    ./abc2
    ./abc3
    ./abc4
    ./abc6
    ./abc8
    ./abc9
    [root@abc test-tar]# 
  • –exclude-from : 根据某个文件列表排除多个文件

    [root@abc test-tar]# cat list.txt 
    abc995
    abc996
    abc997
    abc998
    abc999
    [root@abc test-tar]# tar -c -f abc.tar ./* --exclude-from=list.txt 
  • -h : 打包软连接

    [root@abc test-tar]# tar -c -h -f bin-h.tar /bin
tar参数
	-c : 创建压缩
	-f ; 指定压缩包名称
	-z : 使用gzip压缩工具进行压缩
	-j : 使用bzip2压缩工具进行压缩
	-J : 使用xz压缩工具进行压缩
	-t : 显示压缩包内容,不解压
	-v : 显示压缩过程
	-P : 允许使用绝对路径进行压缩
	-x : 解压
	-C : 指定解压路径
	-h : 打包软连接
	--exclude : 排除某些文件
	--exclude-from : 根据文件列表排除多个文件

习题

1.linux下常见的压缩包类型有哪些
zip 
gz 
bz2 
tar.gz 
tar.bz 
tar

2.将/etc/hosts文件用tar格式打包。
tar -c -P -f hosts.tar /etc/hosts

3.查看打包之后的/etc/hosts的文件内容,在不解压的情况下查看。
tar -t -f hosts.tar

4.使用tar打包/var/log/目录。
tar -c -P -f hosts.tar /var/log/

5.使用zip打包/etc目录。
zip -r etc.zip /etc

6.查看/var/log/abc.zip目录的压缩包中有哪些内容。
unzip -l /var/log/abc.zip

7.将/var/log/abc.zip目录解压到/opt目录中。
unzip -d /opt /var/log/abc.zip

10.解压/etc/abc.tar.gz目录到/opt目录中。
tar -xf /etc/abc.tar.gz -C /opt

11.用zip打包/opt目录,要求不显示打包过程。
zip -q opt.zip /opt

zip [参数] 压缩包名称  压缩文件路径
 
12.打包/etc/目录,要求是.bz2格式
tar -c -j -f etc.tar /etc

13.打包/var/log目录,要求是.xz格式
tar -c -J -f log.tar.xz /var/log

14.使用tar命令打包/etc/时,会出现一个删根的操作,怎样打包不会进行删根的操作
tar -c -P -f etc.tar /etc

15.打包/etc/目录,要求不打包/etc/hosts这个文件。

16.打包/etc/目录,要求不打包/etc/hosts和/etc/hostname这两个文件。

17.打包/etc/目录,但要排除passwd,shadow,group,gshadow,hosts,hostname这些文件。(你能用两种方法实现吗)

18.已知/etc/grub2.cfg文件是个软连接文件,在你不知道的情况下,请问怎么打包该文件的真实文件。

19.把/var/log/目录中所有.log的文件进行打包成一个压缩包,名称定义为log.tar.gz的压缩包。

20.已知文件oldboy.gz,请问在不解压的情况下,怎样查看该文件的内容。

21.打包/etc/目录,当前时间方式的压缩包:比如: 2019-12-24_etc.tar.gz

22.创建/data/bak目录,然后复制如下文件到/data/bak目录下

23.接22题,使用tar命令对/data/bak目录下的文件及目录以gzip的格式进行归档压缩到/data目录下(压缩包的名字以自己名字命名)

24.使用tar命令查看上题/data目录下压缩包内的内容。

25.把第23题/data目录下的压缩包,解压到/backup目录下

26.再次使用tar命令把/data/bak目录下的文件及目录以gzip的格式进行归档压缩到/data目录下,但是在进行归档压缩时,排除文件“sudoers”,然后查看该压缩包内容是否存在文件“sudoers”(压缩包名自行拟定)

27.打包/etc目录下所有普通文件到root用户家目录。

28.打包/etc/目录到/opt/目录下,名称要求以当前主机名和ip地址命名,例:oldboy_10.0.0.100.tar.gz

29.如何使用gzip命令对文件进行压缩、解压

30.如何用zip命令对文件以及目录进行压缩、解压

32.打包opt整个目录,并命名test_opt.tar.gz

33.查看打包好的test_opt.tar.gz里的文件

34.将打包好的test_opt.tar.gz内容指定解压至/tmp目录

35.打包etc目录下的所有文件,不要目录只要文件

36.打包etc目录下的所有文件,排除passwd,shadow

37.打包etc目录下的所有以p开头的文件

38.打包etc目录下所有大于1M的文件

习题

2.权限中的rwx-,每个字符所代表什么意思?对应的数字是什么?

r		可读		4

w		可写		2

x		可执行		1

-		没有权限	0


3.-rwxr-xr-x,写出对应数字权限



4.-rwxr--r--,写出对应数字权限


5.-r-xr-x--x,写出对应数字权限



6.-rw-r-xr-x,写出对应数字权限


7.-r--r--r--,写出对应数字权限



8.-r-xr-----,写出对应数字权限


9.---x-w-r--,写出对应数字权限


10.-rwxr--rw-,写出对应数字权限



11.-rw-r--r--,写出对应数字权限


12.---xr--rwx,写出对应数字权限


13.777,写出对应字母权限


14.545,写出对应字母权限




15.744,写出对应字母权限



16.600,写出对应字母权限



17.641,写出对应字母权限


18.711,写出对应字母权限



19.700,写出对应字母权限



20.555,写出对应字母权限



21.733,写出对应字母权限


22.713,写出对应字母权限



23.建一个目录/test,查看这个目录的默认权限是?




24.进入/test目录中,建一个文件abc,查看其默认的权限为?




25.创建一个文件test.txt,并其将权限改为600.



26.将test.txt文件的权限改为755.



27.将test.txt文件的权限改为000.



28.修改test.txt文件的权限为644.



29.给test.txt文件的属主加上x权限。




30.给test.txt文件的其他用户加上x权限。



31.去除test.txt文件的所有执行权限。



32.给/test目录及目录下的所有文件或目录的权限统一改为744。


运维之基础命令--打包与压缩
http://gsproj.github.io/2022/07/06/01_运维/01-基础命令/day08-打包与压缩/打包与压缩笔记/
作者
GongSheng
发布于
2022年7月6日
许可协议