J'ai reçu un énorme fichier .tar.gz d'un client contenant environ 800 Mo (non compressé) de fichiers image. Le ftp de notre hébergeur étant très lent, il n'est pas pratique d'extraire tous les fichiers localement et de les envoyer via FTP. J'ai pu transférer le fichier .tar.gz sur notre site d'hébergement, mais lorsque je ssh dans mon répertoire et que j'essaie d'utiliser unzip, le message d'erreur suivant s'affiche:
[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.
Quelle commande dois-je utiliser pour extraire tous les fichiers d'un fichier .tar.gz?
tar -xf
suggestion serait une excellente réponse supplémentaire.