Skip to content

Instantly share code, notes, and snippets.

@d0zingcat
Created May 9, 2016 05:02
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save d0zingcat/ded7705f52af2ac5d84829aa734ec7cd to your computer and use it in GitHub Desktop.
Save d0zingcat/ded7705f52af2ac5d84829aa734ec7cd to your computer and use it in GitHub Desktop.
Install ChaCha20 Encryption for Shadowsocks On CentOS
yum install m2crypto gcc -y
wget -N --no-check-certificate https://download.libsodium.org/libsodium/releases/LATEST.tar.gz
tar zfvx libsodium-*.tar.gz
cd libsodium-*
./configure
make && make install
echo "/usr/local/lib" >> /etc/ld.so.conf
ldconfig
@worldfar2016
Copy link

#3 tar zfvx libsodium-*.tar.gz
should be tar zvxf LATEST.tar.gz

@richhe678
Copy link

sudo apt update
sudo apt install shadowsocks-libev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment