.gtar 파일을 추출하는 방법은 무엇입니까?

.gtar 파일을 추출하는 방법은 무엇입니까?

파일이 있는데 .gtar추출하고 싶은데 추출이 되지 않습니다.

다음은 내가 시도한 방법과 그 결과입니다. 여러 개의 텍스트 파일을 포함해야 합니다.

$ gtar -xf file.gtar
gtar: This does not look like a tar archive.
gtar: Skipping to next header.
gtar: Exiting with failure status due to previous errors.

$ gtar -xzf file.gtar
gzip: stdin: not in gzip format
gtar: Child returned status 1
gtar: Error is not recoverable: exiting now

$ gunzip -c file.gtar | tar xvf -
gzip: file.gtar: not in gzip format
tar: This does not look like a tar archive
tar: Exiting with failure status due to previous errors

$ tar -xzf file.gtar 
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now

$ file file.gtar 
file.gtar: HTML document, ASCII text, with very long lines, with no line terminators

누구든지 그것을 추출하는 방법을 제안할 수 있습니까?

관련 정보