By accessing the website and accepting the Cookie Policy, you agree to use the cookies provided by the Site in accordance with to analyze traffic, remember your preferences, and optimize your experience.
如何为Linux配置全局代理,以Debian为例
2022-01-18 17:06:08    1804    0    0
emengweb

方法一

添加代理设置,添加环境变量

export http_proxy="http://127.0.0.1:8123"
export https_proxy="http://127.0.0.1:8123"
source /etc/profile #重新载入环境变量

取消代理

unset http_proxy
unset https_proxy​

 

方法二

或者将以下内容写入.bashrc中

export http_proxy="http://127.0.0.1:8123"
export https_proxy="http://127.0.0.1:8123"
source /root/.bashrc #重新载入环境变量

如果要取消,注视掉这两行exprot之后,再重载环境变量即可

#export http_proxy="http://127.0.0.1:8123"
#export https_proxy="http://127.0.0.1:8123"
source /root/.bashrc #重新载入环境变量

 

上一篇: linux磁盘已满,查看文件占用,找到占用最高的文件夹或文件

下一篇: Docker无法启动处理方法

1804 人读过
文档导航