我想用代理下载一些wget的东西:
HTTP Proxy: 127.0.0.1
Port: 8080
代理不需要用户名和密码。
我该怎么做呢?
我想用代理下载一些wget的东西:
HTTP Proxy: 127.0.0.1
Port: 8080
代理不需要用户名和密码。
我该怎么做呢?
当前回答
在尝试了许多教程之后,我的Ubuntu 16.04 LTS在一个经过身份验证的代理后,它按照以下步骤工作:
编辑 /etc/wgetrc:
$ sudo nano /etc/wgetrc
取消注释以下几行:
#https_proxy = http://proxy.yoyodyne.com:18023/
#http_proxy = http://proxy.yoyodyne.com:18023/
#ftp_proxy = http://proxy.yoyodyne.com:18023/
#use_proxy = on
将http://proxy.yoyodyne.com:18023/修改为http://username:password@domain:port/
重要提示:如果它仍然不工作,检查您的密码是否有特殊字符,如#,@,…如果是这种情况,则转义它们(例如,将passw@rd替换为passw%40rd)。
其他回答
以下可能的配置位于/etc/wgetrc,只需取消注释并使用…
# You can set the default proxies for Wget to use for http, https, and ftp.
# They will override the value in the environment.
#https_proxy = http://proxy.yoyodyne.com:18023/
#http_proxy = http://proxy.yoyodyne.com:18023/
#ftp_proxy = http://proxy.yoyodyne.com:18023/
# If you do not want to use proxy at all, set this to off.
#use_proxy = on
如果你只需要用代理执行一次wget,最简单的方法是用这样的一行程序来执行:
http_proxy=http://username:password@proxy_host:proxy_port wget http://fileurl
或使用https目标URL:
https_proxy=http://username:password@proxy_host:proxy_port wget https://fileurl
在命令行输入:
$ export http_proxy=http://proxy_host:proxy_port
对于已验证的代理,
$ export http_proxy=http://username:password@proxy_host:proxy_port
然后运行
$ wget fileurl
对于https,只需使用https_proxy而不是http_proxy。您还可以将这些行放在~/中。Bashrc文件,这样你就不需要每次都执行了。
在我的ubuntu中,跟随$HOME/中的行。Wgetrc成功了!
Http_proxy = http://uname:passwd@proxy.blah.com:8080 Use_proxy = on
在尝试了许多教程之后,我的Ubuntu 16.04 LTS在一个经过身份验证的代理后,它按照以下步骤工作:
编辑 /etc/wgetrc:
$ sudo nano /etc/wgetrc
取消注释以下几行:
#https_proxy = http://proxy.yoyodyne.com:18023/
#http_proxy = http://proxy.yoyodyne.com:18023/
#ftp_proxy = http://proxy.yoyodyne.com:18023/
#use_proxy = on
将http://proxy.yoyodyne.com:18023/修改为http://username:password@domain:port/
重要提示:如果它仍然不工作,检查您的密码是否有特殊字符,如#,@,…如果是这种情况,则转义它们(例如,将passw@rd替换为passw%40rd)。