首页 > 代码库 > 压缩和解压缩
压缩和解压缩
[root@localhost ~]# 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 桌面
[root@localhost ~]# gzip 102 注释:使用 gzip 压缩102文件
[root@localhost ~]# bzip2 103 注释:使用 bzip2 压缩103文件
[root@localhost ~]# zip 104.zip 104 注释:使用 zip 压缩104文件
adding: 104 (deflated 99%) 使用zip压缩文件,源文件不会消失
[root@localhost ~]# xz 105 注释:使用xz 压缩105文件
[root@localhost ~]# 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 桌面
[root@localhost ~]# gzip -d 102.gz 解压102.gz
[root@localhost ~]# bzip2 -d 103.bz2 解压 103.bz2
[root@localhost ~]# xz -d 105.xz 解压105.xz
[root@localhost ~]# 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 桌面
[root@localhost ~]# rm -r 104 删除源文件
rm:是否删除普通文件 "104"?y
[root@localhost ~]# 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 桌面
[root@localhost ~]# unzip 104.zip 解压104.zip
Archive: 104.zip
inflating: 104
[root@localhost ~]# 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 桌面
[root@localhost ~]#
压缩和解压缩