|
|
@ -39,6 +39,9 @@ refer to the [Wiki page](https://github.com/shadowsocks/shadowsocks/wiki/Feature |
|
|
|
+ [Configure and start the service](#configure-and-start-the-service) |
|
|
|
- [Fedora & RHEL](#fedora--rhel) |
|
|
|
+ [Install from repository](#install-from-repository-1) |
|
|
|
- [OpenSUSE](#opensuse) |
|
|
|
+ [Install from repository](#install-from-repository-2) |
|
|
|
+ [Build from source](#build-from-source) |
|
|
|
- [Archlinux](#archlinux) |
|
|
|
- [Directly build and install on UNIX-like system](#linux) |
|
|
|
- [FreeBSD](#freebsd) |
|
|
@ -189,6 +192,31 @@ or `yum`: |
|
|
|
su -c 'yum update' |
|
|
|
su -c 'yum install shadowsocks-libev' |
|
|
|
``` |
|
|
|
### OpenSUSE |
|
|
|
|
|
|
|
#### Install from repository |
|
|
|
Use the following command to install from repository. |
|
|
|
|
|
|
|
```bash |
|
|
|
sudo zypper install shadowsocks-libev |
|
|
|
``` |
|
|
|
|
|
|
|
#### Build from source |
|
|
|
You should install `zlib-devel` and `libopenssl-devel` first. |
|
|
|
|
|
|
|
```bash |
|
|
|
sudo zypper update |
|
|
|
sudo zypper install zlib-devel libopenssl-devel |
|
|
|
``` |
|
|
|
|
|
|
|
Then download the source package and compile. |
|
|
|
|
|
|
|
```bash |
|
|
|
git clone https://github.com/shadowsocks/shadowsocks-libev.git |
|
|
|
cd shadowsocks-libev |
|
|
|
./configure && make |
|
|
|
sudo make install |
|
|
|
``` |
|
|
|
|
|
|
|
### Archlinux |
|
|
|
|
|
|
|