要抓取 Debian 的 ISO, 直接 wget -c 抓很慢, 大概都在 20k/s 上下跑, 所以找找怎麼透過 Proxy 來抓.
找到這篇: wget and the proxy server
設定方法
- vim ~/.wgetrc
- .wgetrc 內容
http_proxy = http://proxy.hinet.net:80/
use_proxy = on
wait = 15
其它 ISP 再自行更改 http_proxy 的設定即可, 再 wget -c 抓, 速度就加到 70k/s 囉~ 🙂
呃!
要不要試試 ftp://linux.nsysu.edu.tw 這個站台下載啊!
應該會快一點
嗯嗯, 有些喜歡從原廠直接下載... XD
可以不用修改 .wgetrc 內容, 直接使用 --execute=COMMAND
wget '--execute=http_proxy = http://proxy.hinet.net:80/' http://www.example.com/test.iso
了解, 感謝指點~ 🙂