摘要:
####安装redis-2.8.3.tar.gz cd /usr/local/src/ tar -zxvf redis-2.8.3.tar.gz cd redis-2.8.3 make #or make test #测试编译 make install #开始编译安装 开机加自启动: echo "re 阅读全文
摘要:
#!/bin/sh ####安装ncurses-5.9.tar.gz cd /usr/local/src/ tar -zxvf ncurses-5.9.tar.gz cd ncurses-5.9 ./configure --with-shared --without-debug --without-ada --enable-overwrite make #or make test #测试编... 阅读全文
摘要:
#!/bin/sh ####安装curl-7.44.0.tar.gz cd /usr/local/src/ tar -zxvf curl-7.44.0.tar.gz cd curl-7.44.0 ./configure --prefix=/usr/local/curl --enable-shared make test #or make test #测试编译 make install #开... 阅读全文