目录
简介
Shadowsocks-libev是一款开源的轻量级代理软件,可以帮助我们突破网络审查,实现科学上网。它基于 libev 事件驱动引擎,在保持快速和稳定的同时,也大大降低了对系统资源的消耗。本文将为您详细介绍如何在 CentOS 7 上安装和配置 Shadowsocks-libev。
安装前准备
在安装 Shadowsocks-libev 之前,我们需要确保系统上已经安装了以下依赖包:
git
gcc
gettext
autoconf
libtool
asciidoc
xmlto
c-ares-devel
libev-devel
libsodium-devel
mbedtls-devel
可以使用以下命令一次性安装这些依赖包:
yum install -y git gcc gettext autoconf libtool asciidoc xmlto c-ares-devel libev-devel libsodium-devel mbedtls-devel
安装Shadowsocks-libev
- 下载 Shadowsocks-libev 的源代码:
git clone https://github.com/shadowsocks/shadowsocks-libev.git cd shadowsocks-libev
- 编译和安装 Shadowsocks-libev:
./configure make make install
配置Shadowsocks-libev
- 创建 Shadowsocks-libev 的配置文件:
cat << EOF > /etc/shadowsocks-libev/config.json { “server”:”0.0.0.0″, “server_port”:8388, “password”:”your_password”, “timeout”:300, “method”:”aes-256-cfb
正文完