«
linux常用代理的配置

时间:2023-11   


系统

vim ~/.bashrc

export https_proxy=http://127.0.0.1:10809
export http_proxy=http://127.0.0.1:10809
export use_proxy=on

apt

vim /etc/apt/apt.conf.d/proxy.conf
#加入以下内容
Acquire {
    HTTP::proxy "http://127.0.0.1:10809"; 
    HTTPS::proxy "http://127.0.0.1:10809";
}

yum

vim /etc/yum.conf
#加入以下内容
proxy=http://127.0.0.1:10809

wget

vim ~/.wgetrc
##加入以下内容
http_proxy=http://127.0.0.1:10809
https_proxy=http://127.0.0.1:10809
ftp_proxy=http://127.0.0.1:10809

curl

vim ~/.curlrc
##加入以下内容
proxy="http://127.0.0.1:10809"

conda

vim ~/.condarc

auto_activate_base: false
ssl_verify: true
channels:
  - defaults
show_channel_urls: true
proxy_servers:
  http: http://127.0.0.1:10809
  https: http://127.0.0.1:10809

命令行去配置

#先检查有没有这个文件 ~/.condarc,没有就新建一个
touch ~/.condarc
#添加代理服务器
conda config --set proxy_servers.http http://127.0.0.1:10809
conda config --set proxy_servers.https http://127.0.0.1:10809
#去除代理
conda config --remove-key proxy_servers.http
conda config --remove-key proxy_servers.https
#配置源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --set show_channel_urls yes

pip

mkdir .pip
vim ~/.pip/pip.conf

加入以下内容

[global]
proxy=http://127.0.0.1:10809

GIT

一、代理设置

1、全局代理设置

http代理的设置

git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy http://127.0.0.1:10809

socks5的设置

git config --global http.proxy socks5://127.0.0.1:10809
git config --global https.proxy socks5://127.0.0.1:10809

2、只对GitHub进行代理

如果挂了全局代理,克隆coding之类的国内仓库会变慢,所以我建议使用如下命令,只对GitHub进行代理,对国内的仓库不影响。

http代理设置

git config --global http.https://github.com.proxy https://127.0.0.1:1080
git config --global https.https://github.com.proxy http://127.0.0.1:1080

socks5设置

git config --global http.https://github.com.proxy socks5://127.0.0.1:1086
git config --global https.https://github.com.proxy socks5://127.0.0.1:1086

如果在输入这条命令之前,已经输入全局代理的话,可以按照二、取消代理的方法进行取消。

注意:以上两点都是对https协议进行代理设置,也就是仅对git clone https://www.github.com/xxxx/xxxx.git这种命令有效。对于SSH协议,也就是git clone git@github.com:xxxxxx/xxxxxx.git这种,依旧是无效的。

二、取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy

三、查看已有配置

git config --global -l