首先去官网下载压缩包
libevent官网
解压缩
tar zxvf libevent-2.1.8-stable.tar.gz
进到下载目录,把安装包放到自己目录下进行解压.
cd libevent-2.1.8-stable/
依次输入
./configure –prefix=/usr 配置目录
make
sudo make install
查看是否安装成功
ls -l /usr/lib |grep libevent
测试
cd libevent-2.1.8-stable/sample/
ls
库里提供了很多测试样例
比如hello-world,进行编译
gcc hello-world.c -o hello-world -levent
执行服务器端
./hello-world
新开一个终端模拟客户端接收数据,注意端口号和hello-world.c里面定义的端口号一致
nc 127.0.0.1 9995
客户端接收数据,完成测试