在 Linux 系统中,可以通过设置环境变量来实现全局代理。以下是一种常用的方法:
- 打开终端,并输入以下命令来设置代理服务器地址和端口号:
export http_proxy=http://代理服务器地址:端口号
export https_proxy=https://代理服务器地址:端口号
例如:
export http_proxy=http://127.0.0.1:8080
export https_proxy=https://127.0.0.1:8080
- 如果代理服务器需要用户名和密码验证,可以将用户名和密码添加到代理地址中,格式为:http://username:password@代理服务器地址:端口号。
例如:
export http_proxy=http://username:password@127.0.0.1:8080
export https_proxy=https://username:password@127.0.0.1:8080
-
然后使用
echo $http_proxy
和echo $https_proxy
命令来确认代理设置已经生效。 -
如果要取消代理设置,可以使用以下命令:
unset http_proxy
unset https_proxy
这样就可以在 Linux 系统中设置全局代理了。