Настроить WGET через прокси в Ubuntu.
В файле /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:port/
http_proxy = http:// proxy:port /
ftp_proxy = http:// proxy:port /# If you do not want to use proxy at all, set this to off.
use_proxy = on
Все.
А для FreeBSD при закачке из портов можно переопределить fetch на wget и прописать ему прокси
ee /etc/make.conf
добавить в конец
FETCH_CMD=/usr/local/bin/wget -t 2 -c //тут и так понятно
DISABLE_SIZE=yes //при загрузке не показывает размер файла
NO_CHECKSUM=yes // не проверяет чек сумму md5
сохраняем и идем в конфиг wget
# cd /usr/local/etc/
# cp wgetrc.sample wgetrc
# ee 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://ip:port/
ftp_proxy = http://ip:port/
сохраняем
идем в порты и радумемся wget’om и его приемуществами
А если прокси требует авторизации?
в командной сторе можно добавить
—proxy-user=MyUserName —proxy-password=MyPassword