2、通过putty连接至到自己的linode,并执行更新
- apt-get update
- apt-get upgrade
3、安装python环境
- apt-get install python-pip
- apt-get install python-m2crypto
- python --version
确定无误后进行下一步
4、安装shadowsocks
指令很简单,就一句
- pip install shadowsocks
5、配置config文件
新建配置文件
- mkdir /etc/shadowsocks
- vim /etc/shadowsocks/config.json
打开config文件后按“i”进入编辑模式,Esc退出编辑模式,“:wq”保存退出
复制下面代码
{
"server":"VPSip",
"server_port":端口,
"local_port":1080,
"password":"密码",
"timeout":600,
"method":"aes-256-cfb"
}
相应数据按自己实际情况修改
6、运行
- ssserver -c /etc/shadowsocks/config.json -d start 后台启动
- ssserver -c /etc/shadowsocks/config.json -d start 后台停止
好了,搭建完成,只要在自己电脑或路由器进行设置就能使用了。
指令已做标红,直接输入就行。
没有评论:
发表评论