现在新疆把python 的软件库都封了,pip都安不上,那只好自己编译安装了。系统为centos6 x64
###1.安装编译环境
1
2
3
|
yum install gcc glib2-devel openssl-devel pcre-devel bzip2-devel gzip-devel zlib-devel
yum install build-essential autoconf libtool gcc -y
|
###2.编译安装shadowsocks
1
2
3
4
5
|
git clone git://github.com/madeye/shadowsocks-libev.git
cd shadowsocks-libev
./configure
make
make install
|
1
2
3
4
5
|
cd ~
git clone https://github.com/rofl0r/proxychains-ng.git
cd proxychains-ng
./configure && make && make install
make install-config
|
Now we can edit proxychains configure file
1
|
vim /usr/local/etc/proxychains.conf
|
Go to last line, replace this line
1
|
socks4 127.0.0.1 9050 --> socks5 127.0.0.1 1080
|
save and quit, and now you can using it .
1
|
proxychains4 wget google.com
|
文章作者
Payne Xu
上次更新
2024-10-26
(78e6526)
原始文档
查看本文 Markdown 版本 »
许可协议
CC BY-NC-ND 4.0