ubuntu
在apt-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 &