Created
March 27, 2019 05:32
-
-
Save erfan-mehraban/f39ed29c3e4c242aa7540783e2be1413 to your computer and use it in GitHub Desktop.
setup shadowsocks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install python3-pip | |
# sudo pip3 install shadowsocks | |
sudo pip3 install -U git+https://github.com/shadowsocks/shadowsocks.git@master | |
# LLc error: $ export LC_ALL=C | |
config: /etc/shadowsocks.json | |
{ | |
"server": "::", | |
"port_password": { | |
"8000": "PASSWORD", | |
}, | |
"timeout": 600, | |
"method": "aes-256-cfb" | |
} | |
start : sudo ssserver -c /etc/shadowsocks.json -d start | |
log : less /var/log/shadowsocks.log | |
boot: | |
/etc/rc.local < /usr/bin/python3 /usr/local/bin/ssserver -c /etc/shadowsocks.json -d start | |
sudo systemctl enable rc-local.service | |
if error: https://www.linuxbabe.com/linux-server/how-to-enable-etcrc-local-with-systemd | |
client: | |
sudo add-apt-repository ppa:hzwhuang/ss-qt5 | |
sudo apt-get update | |
sudo apt-get install shadowsocks-qt5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment