对于经常在服务商使用git 和 composer 的我来说,实在受不了那几k的网速,但是毕竟使用较少,而且,还可以使用国内镜像源,但是近期要使用Google API,这个就有点头疼了。所以,废话不多话,直接上步骤,没什么技术含量。
Proxychains4版本
安装配置shadowsocks
安装
1 | pip install shadowsocks |
配置
编辑配置文件 /etc/sslocal.json
,配置文件可以放在任意位置,启动的时候 指定对应位置即可
1 | { |
配置时请把后面的注释去掉
使用
1 | 启动:sslocal -c /etc/sslocal.json -d start |
安装配置 Proxychains4
项目地址: https://github.com/rofl0r/proxychains-ng
编译安装即可
1 | git clone https://github.com/rofl0r/proxychains-ng.git |
修改 /etc/proxychains.conf
将 socks4 127.0.0.1 9095 改成 socks5 127.0.0.1 1080
这里127.0.0.1 与 shadowsock配置文件中 local_address 对应 1080 与 local_port 对应即可
至此,安装完成,只要在使用的命令前 加上 proxychains4
即可实现科学上网
1 | proxychains4 wget https://www.google.com |
HTTP_PROXY(推荐)
1 | http: |
如果http代理需要验证的话
1 | http_proxy=http://userName:password@proxyAddress:port |
其他代理方式相同