Error
Error : tar: Error is not recoverable: exiting now
Tada.*+
2021. 11. 24. 19:17
728x90
에러 내용
tar: Error is not recoverable: exiting now
> tar -zxvf jdk-13.0.2_linux-x64_bin.tar.gz
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
해결 방법
file 명령어를 통하여 제대로된 tar파일인지 확인합니다.
> file jdk-13.0.2_linux-x64_bin.tar.gz7
jdk-13.0.2_linux-x64_bin.tar.gz: HTML document, ASCII text, with very long lines
확장자는 .gz으로 표시되어 있으나 실제 file 형식을 보면 HTML로 되어 있음.
그렇기 때문에 tar 명령어를 실행하였을 때 에러가 발생하는 것입니다.
해결 방법은 없습니다. 파일 형식자체가 잘못된 것으로 제대로된 파일을 찾아 다운받아야 합니다.
728x90