function proxy_on() { export http_proxy=http://127.0.0.1:7890 export https_proxy=http://127.0.0.1:7890 export all_proxy=socks5://127.0.0.1:7890 echo -e "终端代理已开启" } function proxy_off(){ unset http_proxy https_proxy all_proxy echo -e "终端代理已关闭" } 在终端中打开代理: ...
function proxy_on() { export http_proxy="http://127.0.0.1:7890" export https_proxy="http://127.0.0.1:7890" export all_proxy="socks5://127.0.0.1:7890" echo -e "已开启代理" } # 关闭代理 function proxy_off(){ unset http_proxy unset https_proxy unset all_proxy echo -e "已关闭代理...
打开~/.bashrc然后在最后加入以下内容: # proxyon proxyon() { export https_proxy=http://127.0.0.1:7890 export http_proxy=http://127.0.0.1:7890 export all_proxy=socks5://127.0.0.1:7891 echo "HTTP/HTTPS Proxy on" } # proxyoff proxyoff() { unset http_proxy unset https_proxy unset all_...
代理设置 图中的IP 地址填主机的IP 地址, 即所有的网络访问都交给外部主机去代理 IP 地址和端口号见Clash for Windows 的设置 终端的设置 ( 以bash 为例, 如果是cshell 就不能用export 而是用 set) ~/.bashrc添加 exporthttps_proxy=http://10.0.0.103:7890exporthttp_proxy=http://10.0.0.103:7890exportal...
export http_proxy=http://127.0.0.1:7890 export https_proxy=$http_proxy 执行这个命令之后只在当前bash窗口起作用。 如果不想每次启动都在命令行输入命令配置代理。可以在用户目录下的~/.bashrc文件的最后一行输入 这两行命令,因为每次启动bash脚本的时候都会执行一遍.bashrc文档的命令。
1、进入~/.bashrc文件,注释/删除对http_proxy/https_proxy的自动启动 2、进入/etc/profile.d文件夹,删除clash.sh,防止http_proxy环境变量自动设置(不确定是否必要,但安装的时候设置了就取消这个设置吧) 3、找到clash的安装目录,删除clash 4、进入clash配置文件目录,删除所有配置文件(目录因人而异,可能是~/.config...
本文内容基于Shadowsockets代理。安装minikube的时候后需要用到代理,所以记录下来。 1.配置代理机器 注意这里一定要改成任意地址,不能是127.0.0.1。否则只有本机能够使用。 2.其他机器配置(Linux) export http_proxy=http://192.168.1.100:1087;export https_proxy=http://192.168.1.100:1087; ...
git config --global http.proxy 'http://127.0.0.1:7890' shell 最好也设一下,以 zsh 为例 1 2 3 4 # .zshrc最后加入 set proxy export http_proxy="http://127.0.0.1:7890" export https_proxy="http://127.0.0.1:7890" 设置外部控制 ui: ...
echo -e "export http_proxy=http://127.0.0.1:7890\nexporthttps_proxy=http://127.0.0.1:7890" >> ~/.bashrc Plus 1+(可选): 代理链Proxychains安装配置: One. 使用 apt 进行安装:sudo apt-get install proxychains Two. 打开 /etc/proxychains.conf 文件:sudo gedit /etc/proxychains.conf,在文件最后...
请问给位大佬们,自从用了cfw(clash for windows)后,电脑env里的http_proxy,https_proxy等都有值,导致终端中apt update提示无法连接127.0.0.1:7980。使用unset http_proxy等把这些代理删除后就可以用了,但是每次重启或者使用新的终端就还得继续unset才能联网,按照网上说的删除/env/enviroment里的代理可以永久删除,但是...