加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Linux中的bz2压缩格式的实例详解

发布时间:2020-12-15 05:13:18 所属栏目:安全 来源:网络整理
导读:Linux中的bz2压缩格式的实例详解 一 语法 bzip2 源文件压缩为bz2格式,不保存源文件bzip2 -k 源文件压缩之后保留原文件注意:bzip2命令不能压缩目录bzip2 -d 压缩文件解压缩,-k保留压缩文件bunzip2 压缩文件解压缩,-k保留压缩文件 二 实战 [root@localhost

Linux中的bz2压缩格式的实例详解

一 语法

bzip2 源文件
压缩为bz2格式,不保存源文件
bzip2 -k 源文件
压缩之后保留原文件
注意:bzip2命令不能压缩目录
bzip2 -d 压缩文件
解压缩,-k保留压缩文件
bunzip2 压缩文件
解压缩,-k保留压缩文件

 二 实战

[root@localhost test]# ls
abc cdf dirtst
[root@localhost test]# bzip2 abc
[root@localhost test]# ls
abc.bz2 cdf dirtst
[root@localhost test]# bzip2 -k cdf
[root@localhost test]# ls
abc.bz2 cdf cdf.bz2 dirtst
[root@localhost test]# bzip2 -d abc.bz2
[root@localhost test]# ls
abc cdf cdf.bz2 dirtst
[root@localhost test]# rm -fr cdf
[root@localhost test]# ls
abc cdf.bz2 dirtst
[root@localhost test]# bunzip2 cdf.bz2
[root@localhost test]# ls
abc cdf dirtst

以上就是Linux中的bz2压缩格式的实例详解,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读