压缩和解压缩

Posted

tags:

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

 

 

 

[[email protected] ~]# ll
总用量 83856
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[[email protected] ~]# gzip 102                       注释:使用 gzip   压缩102文件
[[email protected] ~]# bzip2 103                     注释:使用 bzip2 压缩103文件
[[email protected] ~]# zip 104.zip 104             注释:使用 zip     压缩104文件
adding: 104 (deflated 99%)                         使用zip压缩文件,源文件不会消失
[[email protected] ~]# xz 105                          注释:使用xz       压缩105文件

[[email protected] ~]# ll
总用量 42404
-rw-r--r--. 1 root root 207425 4月 11 02:35 102.gz   压缩后
-rw-r--r--. 1 root root 62522 4月 11 02:35 103.bz2   压缩后
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104   
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip  压缩后
-rw-r--r--. 1 root root 3600 4月 11 02:34 105.xz      压缩后
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[[email protected] ~]# gzip -d 102.gz              解压102.gz
[[email protected] ~]# bzip2 -d 103.bz2          解压 103.bz2

[[email protected] ~]# xz -d 105.xz                 解压105.xz

[[email protected] ~]# ll
总用量 84060
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[[email protected] ~]# rm -r 104                     删除源文件
rm:是否删除普通文件 "104"?y                      

[[email protected] ~]# ll
总用量 70084
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[[email protected] ~]# unzip 104.zip                           解压104.zip
Archive: 104.zip
inflating: 104
[[email protected] ~]# ll
总用量 84060
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip    解压后源文件不会消失
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[[email protected] ~]#

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

Linux高级命令05:压缩和解压缩命令

python中如何压缩和解压缩文件

linux下文件的压缩和解压缩

python中如何压缩和解压缩文件

压缩和解压缩详解

LInux 压缩和解压缩命令