wget convierte el archivo tgz a HTML

wget convierte el archivo tgz a HTML

Estoy intentando descargar un.tgzarchivo en Debian, así que decidí usarlo wgetpara esto. Esta es mi línea de comando:

~$ wget http://www.netmet-solutions.org/download/netMETdistrib-4.5_5.8_20160322.tgz

Recibí el archivo y quieroalquitránAsí que hago

~$ tar -zxvf netMETdistrib-4.5_5.8_20160322.tgz

y dice que

gzip: stdin: not in gzip format

Entonces reviso el archivo y aparece esto.

netMETdistrib-4.5_5.8_20160322.tgz: HTML document, ISO-8859 text, with very long lines

obtenertransformado untgzarchivo en HTML y no sé por qué.

¿Algunas ideas? Gracias

Respuesta1

http://www.netmet-solutions.org/download/netMETdistrib-4.5_5.8_20160322.tgztiene una redirección aplicada ahttp://www.netmet-solutions.org/Telechargement/Telechargement(una página HTML estándar). Básicamente, no estás descargando el archivo .tgz, sino una simple página HTML. La salida de wget confirma la redirección:

➤ wget http://www.netmet-solutions.org/download/netMETdistrib-4.5_5.8_20160322.tgz
--2017-04-14 11:14:43--  http://www.netmet-solutions.org/download/netMETdistrib-4.5_5.8_20160322.tgz
Resolving www.netmet-solutions.org... 193.50.27.134
Connecting to www.netmet-solutions.org|193.50.27.134|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: /Telechargement/Telechargement [following]
--2017-04-14 11:14:44--  http://www.netmet-solutions.org/Telechargement/Telechargement
Connecting to www.netmet-solutions.org|193.50.27.134|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: `netMETdistrib-4.5_5.8_20160322.tgz'

EDITAR:Básicamente, debe aceptar la licencia CeCILL para poder descargar el archivo (http://www.netmet-solutions.org/Telechargement/Jaccepte). Para hacer esto a través de wget, deberá pasar la cookie esperada en el encabezado:

wget --no-cookies --header "Cookie: accepted_licence=chocolat" http://www.netmet-solutions.org/download/netMETdistrib-4.5_5.8_20160322.tgz

, donde el archivo resultante será reconocido como datos comprimidos con gzip:

➤ file netMETdistrib-4.5_5.8_20160322.tgz
netMETdistrib-4.5_5.8_20160322.tgz: gzip compressed data, last modified: Tue Mar 22 12:39:36 2016, from Unix

información relacionada