@Scrazy
2016-02-15T08:27:27.000000Z
字数 414
阅读 861
Debian
今天把shadowsocks重新装了装,以前都是装的qt版,这次没有图形界面了。顺便把她设为开机自启,记录一下。
mouse@debian ~> sudo vi /etc/rc.local
#!/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.
/usr/local/bin/sslocal -c /etc/shadowsocks/config.json #在这里添加此行即可
exit 0