[root@localhost dir1]# gzip /root/dir1 //没加-r不行 gzip: /root/dir1 is a directory -- ignored [root@localhost dir1]# gzip -r /root/dir1 [root@localhost dir1]# ll total 40 -rw-r--r--. 1 root root 26 Aug 26 11:49 xxx10.gz -rw-r--r--. 1 root root 25 Aug 26 1...
-z, --gzip, --ungzip:在 tar 包中使用 gzip 压缩; -j, --bzip2:在 tar 包中使用 bzip2 压缩; -C, --directory=DIR:指定解压缩到的目录。 例如,将多个文件或目录打包成一个 tar 包,可以使用以下命令: tar -cvf filename.tar file1 file2 dir1 其中,-c 表示创建 tar 包,-v 表示显示详细信息...
gzip 可以同时压缩解压缩多个文件 但是是分别对每一个文件进行压缩解压缩 [root@centos76 data]# gzip -v ./* ./a.txt: 80.2% -- replaced with ./a.txt.gz ./b.txt: 78.5% -- replaced with ./b.txt.gz ./c.txt: 83.8% -- replaced with ./c.txt.gz gzip: ./dir1 is a directory --...
[root@localhost tar]# gzip boot(错误,不能对目录进行压缩) gzip: boot is a directory -- ignored 2、gunzip 是一个使用广泛的解压缩命令,它用于解压被 gzip 压缩过的文件(扩展名为 .gz)。 gunzip audit.log.gz 四、bzip2压缩命令的使用 先安装bzip2:yum install bzip2 -y 进行压缩: [root@localhost lo...
tar、gzip、unzip详解 TAR 命令名 tar - tar 档案文件管理程序的 GNU 版本。下面将逐个介绍其含义 总览 tar [ - ] A --catenate --concatenate | c --create | d --diff --compare | r --append | t --list | u --update | x -extract --get [ --atime-preserve ] [ -b, --block-size...
2 压缩-z, --gzip ilter the archive through gzip:使用gzip压缩可以调用gzip,bzip等压缩工具,对包进行压缩。gzip最常用,使用gzip即可,.gz为后缀。3 解包-x, --extract, --get extract files from an archive:解压(自动识别各种格式的压缩)-C, --directory=DIR change to directory DIR:加压到指定...
使用gzip直接压缩test目录,可以看到是将目录内的所有文件 "分别" 进行压缩: [root@localhosttest]# gzip /home/testgzip: /home/test is a directory -- ignored [root@localhosttest]# gzip -r /home/test[root@localhosttest]# lsa.txt.gz b.txt.gz c.txt.gz ...
1、gzip #1、安装gzip命令 yum install -y gzip #2、gzip命令使用 gzip 普通文件名 -r 递归压缩 1 ? 03:26:42 root@yyds,10.0.0.100:~ # gzip file1.txt 0 ? 03:27:09 root@yyds,10.0.0.100:~ # ll total 4 -rw-r--r--. 1 root root 0 Apr 18 03:25 file10.txt ...
也就是说多个文件打包成了一个 a.tar 文件,但是这个 a.tar 还是很大,继续用gzip 进行压缩,变成了一个更小的压缩文件。 作用:打包、压缩文件;tar 文件是把几个文件和(或)目录集合在一个文件里,该存档文件可以通过使用 gzip、bzip2 或 xz 等压缩工具进行行压缩后传输 查看man tar 这里 man 不是男人的意思,...