tar解压bz2文件报错
Posted timor19
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tar解压bz2文件报错相关的知识,希望对你有一定的参考价值。
用tar命令解压文件的时候出错了,信息如下:
tar -jvxf jemalloc-3.6.0.tar.bz2 ./nginx/
tar (child): bzip2: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
解决方法很简单,只要安装bzip2就行了,yum安装的命令如下:
yum -y install bzip2
服务器不能联网,把压缩包传上去
tar zxvf bzip2-****.tar.gz
cd bzip2-*****
make && make install
以上是关于tar解压bz2文件报错的主要内容,如果未能解决你的问题,请参考以下文章
linux下 zip解压 tar解压 gz解压 bz2等各种解压文件命令
CentOS下tar解压 gz解压 bz2等各种解压文件使用方法