<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar/11356004?origin\x3dhttp://openrent.blogspot.com', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

wget via a proxy

If your server cannot contact the Internet except via a proxy server, you can still use the wget command. You simply tell wget how to use the proxy server. Here's how:

1) Open /etc/wgetrc
2) Scroll down to the section for HTTP and FTP proxy servers (approximately line #76 )
3) Add the URL and port of your proxy server for both FTP and HTTP transfers:
ftp_proxy = http://your. proxy.server:8080
http_proxy = http://your. proxy.server:8080

The next time you invoke wget, it will inherit these settings.