cannot run bzip2: No such file or directory
압축 파일을 해제하기 위해 tar 명령어로 압축 해제를 시도하게 되면 아래 문제가 발생하며 진행되지 않을 수 있습니다.
[user@CentOS ~]$ tar -xvf firefox-61.0.tar.bz2 tar (child): cannot run bzip2: No such file or directory tar (child): trying lbzip2 tar (child): lbzip2: 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 패키지가 설치되지 않아서 발생하는 문제입니다. 아래 명령어로 bzip2 패키지를 설치하게 되면 문제가 해결될 것입니다.
- yum 패키지 관리자를 사용하는 경우 # yum install bzip2 - apt 패키지 관리자를 사용하는 경우 # apt install bzip2