proxychains-ng 配置与使用

安装

1
2
3
4
5
6
git clone https://github.com/rofl0r/proxychains-ng.git
cd proxychains-ng
./configure
make && make install
cp ./src/proxychains.conf /etc/proxychains.conf
cd .. && rm -rf proxychains-ng

配置 proxychains

1
2
3
4
sudo vim /etc/proxychains.conf
# 将socks4 127.0.0.1 9095改为
socks5 127.0.0.1 1080 //1080改为你自己的端口

使用

在需要代理的命令前加 proxychains

1
2
proxychains4 repo sync -j8
proxychains4 wget http://xxx.com/xxx.zip