Wget: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
(New page: If you Linux server is behind a proxy server you will need to tell the WGET configuration file that they need to use a proxy server. Edit the file /etc/wgetrc removing the comments to use...)
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
If you Linux server is behind a proxy server you will need to tell the WGET configuration file that they need to use a proxy server.
If your Linux server is behind a proxy server you will need to tell the WGET configuration file that it needs to use a proxy server.


Edit the file /etc/wgetrc removing the comments to use
Edit the file below.
 
'''/etc/wgetrc'''
<pre>
<pre>
http_proxy = http://proxy.yoyodyne.com:18023/
http_proxy = http://proxy.yoyodyne.com:18023/
Line 11: Line 13:
use_proxy = on
use_proxy = on
</pre>
</pre>
Make sure you have a look at the page [[Bashrc|bashrc]]


[[Category : Linux ]]
[[Category : Linux ]]

Latest revision as of 23:56, 10 June 2008

If your Linux server is behind a proxy server you will need to tell the WGET configuration file that it needs to use a proxy server.

Edit the file below.

/etc/wgetrc

http_proxy = http://proxy.yoyodyne.com:18023/
ftp_proxy = http://proxy.yoyodyne.com:18023/

and don't forget to set:

use_proxy = on

Make sure you have a look at the page bashrc