Last active
December 17, 2015 13:29
-
-
Save ShenXuGongZi/5617644 to your computer and use it in GitHub Desktop.
教程shadowsocks+python+Mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################################################### | |
###欢迎您选用 WWW.HOST700.com VPS 低价 稳定 实惠 ### | |
#################################################### | |
#开始先配置shadowsocks这个就大概说下 | |
git clone git://github.com/clowwindy/shadowsocks.git | |
#然后进入 | |
cd shadowsocks | |
#然后配置下config.json文件 | |
vim config.json #具体的配置自己看很简单 | |
#运行服务端 | |
python server.py | |
#然后就启动成功了 要长期运行可以用这个命令 | |
nohup python server.py > log & | |
#接下来就是Mac上配置 咱们现在开始 | |
#打开终端输入 | |
scr root@你的vpsip:shadowsocks目录地址 /Mac本地目录 | |
#上面这个命令是吧vps上的文件拷贝回来 这样配置好了 也不用改直接运行就好了 | |
#然后进入目录 | |
cd shadowsocks | |
#运行程序 | |
python local.py | |
#然后打开系统偏好设置--网络--选择正在使用的网络--高级--代理--SOCKS代理填入 | |
127.0.0.1 1080 #1080是你自定义的端口号 | |
######################################### | |
#这样就完成了。想要设置开机启动请看下面 | |
########################################## | |
#编辑文件/etc/rc.common | |
sudo vim /etc/rc.common | |
#尾部添加内容: | |
if [ -f /etc/rc.local ]; then | |
sh /etc/rc.local | |
fi | |
#创建文件/etc/rc.local | |
sudo touch /etc/rc.local | |
#然后就可以像Linux一样使用/etc/rc.local了。 | |
#实例 | |
############################ | |
# rc.local | |
############################ | |
python 你的文件路径/shadowsocks/local.py > log & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment