Linux : not in gzip format 에러 (tar~)
Linux

Linux로 설치파일을 받았는데 압축파일로 압축해제 할때 에러 대처


firefox로 설명해보겠습니다.


[root@dbserver ~]# cd /app

[root@dbserver app]# ls

firefox-30.0.tar.bz2 lost+found oracle oraInventory temp tmp


[root@dbserver app]# tar zxvf firefox-30.0.tar.bz2

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Rrror is not recoerable: exiting now


압축파일이 tar.gz 가 아니고 tar 일때는 z를 빼면 된다.

tar -zxvf "압축파일명.tar.gz


tar -xvf "압축파일명".tar(buz~)


tar.gz인가 tar인가 확인하고 입력해주면 된다.