약 800MB의 이미지 파일이 포함 된 클라이언트에서 거대한 .tar.gz 파일을 받았습니다 (압축되지 않은 경우). 호스팅 회사의 ftp가 매우 느리므로 모든 파일을 로컬에서 추출하여 ftp를 통해 전송하는 것은 실용적이지 않습니다. .tar.gz 파일을 호스팅 사이트로 ftp로 보낼 수 있었지만 디렉토리로 ssh하고 unzip을 사용하려고하면 다음과 같은 오류가 발생합니다.
[esthers@clients locations]$ unzip community_images.tar.gz
Archive: community_images.tar.gz
End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive. In the latter case the central directory and zipfile comment will be found on the last disk(s) of this archive.
note: community_images.tar.gz may be a plain executable, not an archive
unzip: cannot find zipfile directory in one of community_images.tar.gz or community_images.tar.gz.zip, and cannot find community_images.tar.gz.ZIP, period.
.tar.gz 파일의 모든 파일을 추출하려면 어떤 명령을 사용해야합니까?
tar -xf
제안은 훌륭한 추가 답을 만들 것입니다.