标签:select ons data- class inux 命令 rem 教程 原来
?官方 GitHub:「https://github.com/rofl0r/proxychains-ng」
?
由于 Kali Linux 系统测试这个系统中已经自带了 ProxyChains,因此就不多说了,但是我需要最新的,所以我就要自己重新下载安装。
ProxyChains 是一个开源代理工具,能够强制使任何应用的 TCP 连接使用 SOCKS4,SOCKS 或者 HTTP(S) 代理进行连接。
apt-get update
# autoremove 这样能卸载干净
apt-get autoremove proxychains
然后删除 proxychians.conf 配置文件:
cd /ect/
ls
rm -rf /proxychains.conf
下载源码
git clone https://github.com/rofl0r/proxychains-ng.git
编译安装
cd proxychains-ng/
./configure --prefix=/usr --sysconfdir=/etc
make && make install
make install-config
使用前你需要有个已经有启用 V** 代理转发且转发通畅的端口,比如常见的 1080 端口。具体不必须说。如果不知道什么意思就不用再往下看了,知道有这个命令就可以了。
然后修改 proxychains 配置文件。默认目录是 /etc/proxychains.conf 文件,默认会给出一些[ProxyList]参数,我们直接直接挪到文件底部修改添加就可以了。
$ vim proxychains.conf
[ProxyList]
socks5 127.0.0.1 1080
上面的参数配置意思是 proxychains将所需要的命令通过sock5在1080端口转发,如果需要什么命令用到代理转发,执行"
proxychains4 + 命令
proxychains4 这个神器解决了很多网络慢、卡和迷路的问题。有段时间在 github 上 git pull 和 push 极慢,通过这个代理转发之后,飞一样的感觉,如丝般顺滑。
1. Kali Linux(Debian)代理工具:ProxyChains使用教程
4. https://wizardforcel.gitbooks.io/daxueba-kali-linux-tutorial/11.html
kali 安装 proxychains-ng (proxychains4)
标签:select ons data- class inux 命令 rem 教程 原来
原文地址:https://www.cnblogs.com/yizhixue-hx/p/12819364.html