红联Linux门户
Linux帮助

ubuntu 16.04 ProxyChains4编译安装

发布时间:2016-07-03 14:52:27来源:linux网站作者:mingjie1212
一、简介
ProxyChains4 是linux平台的一个代理切换软件。最近在ubuntu 上使用ss 进行上网,每次代理的切换都是非常麻烦。
ProxyChains4 能很好的解决socks代理的系统设置问题。
 
二、安装
git clone https://github.com/rofl0r/proxychains-ng.git #如果clone 不下来就下载zip 我就存在下载不动的情况  
cd proxychains-ng  
./configure --prefix=/usr --sysconfdir=/etc #此处的prefix路径一定是/usr 如果换成其他会出现couldnt locate libproxychains4.so  
make #需要gcc环境  
sudo make install  
sudo make install-config (installs proxychains.conf)  
 
三、配置
sudo vi /etc/proxychains.conf  
[ProxyList]  
# add proxy here ...  
# meanwile  
# defaults set to "tor"  
socks5  127.0.0.1 1080  
 
四、用法
proxychains4 firefox  
proxychains4 ping www.google.com  
proxychains4 telnet somehot.com  
 
这样我们打开ss连接服务器后,然后proxychains4命令打开g..gle等,都是没问题的。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22025.html