将socks5代理转http

2021年07月20日 4220点热度 19人点赞 0条评论

在Ubuntu Linux中命令行工具使用代理的必要性:

在Ubuntu Linux中很多命令行工具, 如apt-get pip git wget curl等, 需要访问外网服务器(主要是github). 但是由于github没有国内的服务器以及其他特殊的原因, 网络链接经常失败, 这时只能求助于代理.

Step 1: 配置V2ray socks5

当前最好的方法是租v2ray的服务器, 并在ubuntu配置客户端.

首先下载脚本:

  1. wget https://install.direct/go.sh

然后执行脚本安装 V2Ray:

  1. sudo bash go.sh

go.sh 会下载github上的v2ray-linux-64.zip文件, 在国内经常出现网络连接失败的情况, 因此需要修改go.sh内容, 并把外网下载的v2ray-linux-64.zip复制到/tmp/v2ray/v2ray.zip .

复制配置文件config.json到/etc/v2ray. config.json可以直接从windows的v2rayN客户端夹中直接复制过来.

启动v2ray服务

  1. systemctl restart v2ray

socks5代理已经启动, 默认端口是10808, (socks5://127.0.0.1:10808).

Step 2: 配置http代理 privoxy

有些命令行工具只能使用http代理, 不能使用socks5代理, 因此需要用privoxy把socks5代理转换为http代理.

安装privoxy

  1. sudo apt install -y privoxy

修改配置文件/etc/privoxy/config

  1. listen-address :10809
  2.  
  3. forward-socks5 / 127.0.0.1:10808 .

启动privoxy服务

  1. systemctl restart privoxy

http代理已经启动, 默认端口是10809, (http://127.0.0.1:10809).

Step 3: 配置proxychains

有些linux命令行工具没有配置代理的方法, 可以用proxychains强制应用使用代理网络.

安装proxychains

  1. sudo apt install -y proxychains

修改配置文件/etc/proxychains.conf最后一行

  1. socks5 127.0.0.1 10808

使用proxychains方法, 在命令前加上proxychains, 如:

  1. proxychains apt update

python pip使用http代理加速

方法1:

  1. pip3 install -r requirement.txt --proxy http://127.0.0.1:10809

方法2:

  1. proxychains pip3 install -r requirement.txt

git使用http代理加速

方法1:

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

取消设置

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

方法2:

  1. proxychains git clone https://github.com/opencv/opencv.git

docker使用http代理加速

  1. # mkdir /etc/systemd/system/docker.service.d
  2. /etc/systemd/system/docker.service.d/http-proxy.conf
  3. ------
  4. [Service]
  5. Environment="HTTP_PROXY=http://127.0.0.1:10809/"
  6. ------
  7. # systemctl daemon-reload
  8. # systemctl restart docker

Subbear

保持饥渴的专注,追求最佳的品质

文章评论