$ gnome-network-properties
Enjoy!
$ gnome-network-properties
echo $http_proxy# After choosing this option, close Terminal. Then try echoing again and you will get message like this
http://username:password@proxy_ip_address:port/It means you have applied proxy system-wide option. Enjoy!


export http_proxy="http://proxy_ip_address:port"
export http_proxy_user=username
export http_proxy_passwd=password
tar -xzvf corkscrew.tar.gz# Create ~/.ssh/proxyauth file and set authentication for http proxy server
cd corkscrew
./configure
make install
username:password# Open ~/.ssh/config file. Add proxy server ip address and its authentication in proxyauth file like this:
Host *# Try to access your server via ssh
ProxyCommand corkscrew proxy_ip_address proxy_port %h %p ~/.ssh/proxyauth
ssh username@example.comAnd it's all done. Enjoy!
cd /etc/subversion# There are two files: servers and config. Open servers file
vi servers# Find [global] section and set proxy host, username, and password
[global]And you're ready to version your apps. Enjoy!
http-proxy-host = proxy_ip_address
http-proxy-port = proxy_port
http-proxy-username = username
http-proxy-password = password
wget --proxy-user=username --proxy-passwd=password
http://example.com/file.zip
curl -x proxy_ip_address:port -U username:password http://example.com