设置终端使用代理的几种方法
设置终端使用代理的几种方法
方法 1:
在终端中直接运行命令
export http_proxy=http://proxyAddress:port
这个办法的好处是简单直接,并且影响面很小(只对当前终端有效,退出就不行了)。
如果你用的是 ss 代理,在当前终端运行以下命令,那么wget
curl
这类网络命令都会经过 ss 代理
export ALL_PROXY=socks5://127.0.0.1:1080
方法 2:
把代理服务器地址写入 shell 配置文件.bashrc
或者.zshrc
直接在.bashrc
或者.zshrc
添加下面内容
export http_proxy="http://localhost:port"
export https_proxy="http://localhost:port"
以使用 shadowsocks 代理为例,ss 的代理端口为1080
, 那么应该设置为
export http_proxy="socks5://127.0.0.1:1080"
export https_proxy="socks5://127.0.0.1:1080"
或者直接设置 ALL_PROXY
export ALL_PROXY=socks5://127.0.0.1:1080
localhost
就是一个域名,域名默认指向 127.0.0.1
,两者是一样的。
然后ESC
后:wq
保存文件,接着在终端中执行
source ~/.bashrc
或者退出当前终端再起一个终端。 这个办法的好处是把代理服务器永久保存了,下次就可以直接用了。
或者通过设置 alias 简写来简化操作,每次要用的时候输入setproxy
,不用了就unsetproxy
。
alias setproxy="export ALL_PROXY=socks5://127.0.0.1:1080"
alias unsetproxy="unset ALL_PROXY"
alias ip="curl -i http://ip.cn"
方法 3:
改相应工具的配置,比如apt
的配置
sudo vim /etc/apt/apt.conf
在文件末尾加入下面这行
Acquire::http::Proxy "http://proxyAddress:port"
保存apt.conf
文件即可。
关于apt
的代理设置可以参考这里
关于 git 的代理设置看这里: 用 shadowsocks 加速 git clone
方法 4(推荐):
利用 proxychains 在终端使用 socks5 代理
补充:
如果代理服务器需要登陆,这时可以直接把用户名和密码写进去
http_proxy=http://userName:password@proxyAddress:port