ssr相比于ss更加稳定,推荐安装ssr
之前在网上找到很久没找到如何在Linux环境下运行ssr,后来通过这个脚本安装ssr,亲测可用
安装以后可以通过ssr启动或者ssr配置命令运行ssr
使用root用户登录,运行以下命令:

1
2
3
4
5
6
# wget --no-check-certificate https://www.djangoz.com/ssr 
wget https://onlyless.github.io/ssr
sudo mv ssr /usr/local/bin
sudo chmod 766 /usr/local/bin/ssr
ssr install
ssr config

SSR的配置就不说明了,很简单的

更新

该脚本会运行git的命令,所以前提先安装的git

1
sudo apt-get install git

设置开机自启动

1
sudo vim /etc/rc.local

里面直接添加要运行的命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

sudo ssr start
exit 0

系统会默认启动,直接实测开机会自动运行
思想就是直接让系统开机启动一条sudo命令,如果这个不行的话,可以去网上参考自己linux版本的开机启动脚本或命令,然后添加一条命令就可以了

1
sudo ssr start