残剑

Stop walking today and you'll have to run tomorrow!

Ubuntu下安装c-ares库

| Comments

安装c-ares库的三种方法:

源码安装

这里下载源码,然后执行以下指令编译和安装。

1
2
3
4
5
6
$ cd c-ares-1.10.0
$ ./buildconf
$ autoconf configure.ac
$ ./configure
$ make
$ sudo make install

第三方软件安装

在新得立搜索c-ares,然后安装相应的库。

终端安装

1
$ sudo apt-get install libc-ares2 libc-ares-dev

Comments