wget: unable to resolve host address ‘github.com’
En el proceso de instalación de Odoo 9 en Ubuntu 14.4
Al ingresar el siguiente comando en la consola:
wget https://github.com/odoo/odoo/archive/9.0.zip
Aparece el siguiente mensaje:
--2016-04-08 09:51:45-- https://github.com/odoo/odoo/archive/9.0.zip
Resolving github.com (github.com)... failed: Temporary failure in name resolution.
wget: unable to resolve host address ‘github.com’
Es un problema con el proxy, para lo cual se edita el fichero /etc/wgetrc
# You can set the default proxies for Wget to use for http and ftp.
# They will override the value in the environment.
http_proxy = http://ip_servidor_proxy:8080/
https_proxy = http://ip_servidor_proxy:8080/
ftp_proxy = http://ip_servidor_proxy:8080/
# If you do not want to use proxy at all, set this to off.
Al ingresar el siguiente comando en la consola:
wget https://github.com/odoo/odoo/archive/9.0.zip
Aparece el siguiente mensaje:
--2016-04-08 09:51:45-- https://github.com/odoo/odoo/archive/9.0.zip
Resolving github.com (github.com)... failed: Temporary failure in name resolution.
wget: unable to resolve host address ‘github.com’
Es un problema con el proxy, para lo cual se edita el fichero /etc/wgetrc
# sudo nano /etc/wgetrc
# You can set the default proxies for Wget to use for http and ftp.
# They will override the value in the environment.
http_proxy = http://ip_servidor_proxy:8080/
https_proxy = http://ip_servidor_proxy:8080/
ftp_proxy = http://ip_servidor_proxy:8080/
# If you do not want to use proxy at all, set this to off.
use_proxy = on
Guardamos los cambios "Ctrl+X" y "y".
Información original: http://virtulinux.blogspot.com/2011/08/configurar-wget-por-proxy.html
Guardamos los cambios "Ctrl+X" y "y".
Información original: http://virtulinux.blogspot.com/2011/08/configurar-wget-por-proxy.html
Comentarios
Publicar un comentario