linux环境中,如何解压后缀是bz2的压缩包?tar.bz2格式的压缩包,如何进行解压?
问题说明:
今天下载了一个nagios中文的包,名字nagios-cn-3.2.3.tar.bz2,即以tar.bz2结尾,经常解压tar.gz
突然想不起来这个用什么命令来解压了。百度了下,再次记录下
操作过程:
1.通过tar命令的jxf进行解压
[root@testvm02 ~]# ll total 9416 -rw-r--r-- 1 root root 9638175 Dec 26 14:38 nagios-cn-3.2.3.tar.bz2 [root@testvm02 ~]# tar -jxf nagios-cn-3.2.3.tar.bz2 [root@testvm02 ~]# ll total 9420 drwxr-xr-x 15 nagios nagios 4096 Oct 15 2010 nagios-cn-3.2.3 -rw-r--r-- 1 root root 9638175 Dec 26 14:38 nagios-cn-3.2.3.tar.bz2
备注:解压成功。
tar命令帮助中关于 -j 参数的解释:
[root@testvm02 ~]# tar --help | grep j conjunction with one of the subcommands --delete, -j, --bzip2 filter the archive through bzip2
小结:tar -jxf xx.tar.bz2 用这个方式来解压该文件。
文档创建时间:2018年12月26日15:43:01