Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 574 Bytes

shadowsocks.md

File metadata and controls

36 lines (25 loc) · 574 Bytes

shadowsocks安装文档

ubuntuapt-get的时候,有的包受网络影响,会报错hash sum mismatch。这是需要代理。

环境

ubuntu

安装
sudo apt-get -y install python-pip
sudo pip install shadowsocks
配置

新建名字为ss_conf.json的配置文件,内容如下:

{
    "server":"ip",
    "port": port,
    "password": "password",
    "method": "method", #可选
    "remarks": "remarks",#可选
    "auth": false
}
运行
nohup sslocal -c ~/ss_conf.json > ~/ss.log 2>&1 &