ProxyChains是一款Linux系统下的代理工具,由于很多优秀的程序位于GitHub社区,使用国内服务器部署GitHub上面的程序时,经常会在拉取安装包时下载超时失败,或是访问国外网站非常慢,例如用git
、wget
等等,这个时候就可以通过proxychain
工具来使用socks或http代理进行网络加速访问。
Debian/Ubuntu系统安装
1、直接通过 apt 包管理工具就可以安装,有两个版本,任选其一;文章源自技术白-https://jishubai.com/1362.html
apt update apt install proxychains -y 或 apt install proxychains4 -y
Centos系统安装
1、有epel源文章源自技术白-https://jishubai.com/1362.html
yum install -y proxychains-ng
2、无epel源文章源自技术白-https://jishubai.com/1362.html
(1)下载源码文章源自技术白-https://jishubai.com/1362.html
git clone https://ghproxy.com/https://github.com/rofl0r/proxychains-ng.git
(2)编译和安装文章源自技术白-https://jishubai.com/1362.html
yum install gcc
cd proxychains-ng
./configure --prefix=/usr --sysconfdir=/etc
make
make install
make install-config
cd .. && rm -rf proxychains-ng
which proxychains
ProxyChain配置使用
1、提前准备好一个可用的socks或http代理,如果自己有国外服务器可以通过 X-UI工具 搭建,也可以购买现成的代理:Iproyal文章源自技术白-https://jishubai.com/1362.html
2、安装后默认配置文件在 /etc/proxychains.conf
或 /etc/proxychains4.conf
,通过vi或nano编辑该文件,拉到最下面填入自己的代理信息,如果没设置用户密码认证则省略,添加后保存退出。文章源自技术白-https://jishubai.com/1362.html
[ProxyList] # add proxy here ... # meanwile # defaults set to "tor" #socks4 127.0.0.1 9050 ##注释掉或者直接删掉默认的本地代理 socks5 连接IP地址 连接端口 用户名 密码
3、这时候通过在安装命令前加上proxychains4就可以使用了,比如 proxychains4 curl cip.cc
,我们可以看到IP已经变成socks代理的IP。文章源自技术白-https://jishubai.com/1362.html
4、但proxychains4太长不好记忆,可以通过alias
给它设置了一个别名 pc 。文章源自技术白-https://jishubai.com/1362.html
命令行输入: nano ~/.profile
编辑文件,在最后面添加如下内容文章源自技术白-https://jishubai.com/1362.html
alias pc=proxychains4
刷新profile
source ~/.profile
测试
pc curl cip.cc
5、也可以命令行直接输入 proxychains4 bash
,这样就能新建一个具有全局代理功能的新终端,不需要在每条命令前都加proxychains了,输入exit退出终端。
- 本站TG群组:skill_blog 联系博主:nbskill (微信协助) 苹果ID号:曙光商店