自分のメモ用
いちいち設定するのが面倒くさい人用
cat <<__EOT__ | sudo tee -a /etc/profile.d/proxy.sh
PROXY_IP=proxy_ip
PROXY_PORT=proxy_port
export PROXY=\$PROXY_IP:\$PROXY_PORT
export http_proxy=\$PROXY
export HTTP_PROXY=\$PROXY
export https_proxy=\$PROXY
export HTTPS_PROXY=\$PROXY
__EOT__
#上のやつながしてリログして↓のやつ流す
echo "proxy=http://$PROXY" | sudo tee -a /etc/yum.conf
echo "https_proxy=http://$PROXY" | sudo tee -a /etc/wgetrc
echo "http_proxy=http://$PROXY" | sudo tee -a /etc/wgetrc
echo "ftp_proxy=http://$PROXY" | sudo tee -a /etc/wgetrc
全部コピペでyumとwgetのproxy設定完了