Linux安装libsodium失败解决办法~
如需在Linux服务器上安装salsa20或者chacha20亦或是chacha20-ietf算法,都离不开libsodium。而且就算在config.json内设置成chacha20也会提示method no supported.下面是月情在遇到这种情况时去找的答案,亲测可用!Centos:yum -y groupinstall "Development Tools"wget https://g
·
如需在Linux服务器上安装salsa20
或者chacha20
亦或是chacha20-ietf
算法,都离不开libsodium。而且就算在config.json内设置成chacha20
也会提示method no supported.
下面是月情在遇到这种情况时去找的答案,亲测可用!
Centos:
yum -y groupinstall "Development Tools"
wget https://github.com/jedisct1/libsodium/releases/download/1.0.11/libsodium-1.0.11.tar.gz
tar xf libsodium-1.0.11.tar.gz && cd libsodium-1.0.11
./configure && make -j2 && make install
echo /usr/local/lib > /etc/ld.so.conf.d/usr_local_lib.conf
ldconfig
Ubuntu/Debian:
apt-get install build-essential
wget https://github.com/jedisct1/libsodium/releases/download/1.0.11/libsodium-1.0.11.tar.gz
tar xf libsodium-1.0.11.tar.gz && cd libsodium-1.0.11
./configure && make -j2 && make install
ldconfig
按照这个shell来说Ubuntu和Debian应该也是没错的。
大家就自行测试Ubuntu和Debian吧。
另外,如果曾经安装过旧版本,亦可重复用以上步骤更新到最新版。
仅1.0.4或以上版本支持chacha20-ietf
更多推荐
已为社区贡献1条内容
所有评论(0)