树莓派和MacOS安装proxychain-ng

1.树莓派

依次输入如下命令即可:

git clone https://github.com/rofl0r/proxychains-ng.git
cd proxychains-ng/
./configure --prefix=/usr --sysconfdir=/etc
sudo make && sudo make install && sudo make install-config

编辑/etc/proxychains.conf
第49行quiet_mode取消注释

quiet_mode

文件末尾添加自己的proxy,例如

socks5 127.0.0.1 1080

2. macOS

最好先关闭System Integrity Protection再安装

csrutil disable
reboot
brew install proxychains-ng

修改配置文件:/usr/local/etc/proxychains.conf
然后

csrutil enable
发布了227 篇原创文章 · 获赞 148 · 访问量 34万+

猜你喜欢

转载自blog.csdn.net/toopoo/article/details/105119880