安装modsecurity时,出现“configure: *** apu library not found.”。
解决方法:
yum install apr-util-devel...
分类:
其他好文 时间:
2014-05-02 10:52:44
阅读次数:
433
出现下列错误:
mlogc.c:32:23: error: curl/curl.h: No such file or directory
mlogc.c:1091: error: expected ‘)’ before ‘*’ token
mlogc.c: In function ‘logc_init’:
出错原因:缺少libcurl-dev or libcurl-devel
...
分类:
其他好文 时间:
2014-05-02 10:50:35
阅读次数:
371
编译Lua时,出现这样的错误:
gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error:
查阅了一下,centOS上需要安装readline-devel ncurses-devel
yum install readline-devel ncurses-devel
...
分类:
系统相关 时间:
2014-05-02 07:03:00
阅读次数:
455
1. 查看内核版本命令: 1) [root@q1test01 ~]# cat
/proc/version Linux version 2.6.9-22.ELsmp (bhcompile@crowe.devel.redhat.com)
(gcc version 3.4.4 20050721 (Red ...
分类:
系统相关 时间:
2014-05-01 07:15:14
阅读次数:
575
drupal_render()只是对theme()的调用做了包装,真正做任务的还是theme()。function theme($hook,
$variables = array()) { ...
...}theme()的开头检查了module_load_all()是否有执行。theme()只能在....
分类:
其他好文 时间:
2014-05-01 02:20:32
阅读次数:
493
上周被android交叉编译搞惨了,还好最后弄好了,写个小结以后备用吧。
步骤,1、下载cygwin的devel和shells模块 2、 2、设置环境变量 a、设置NDK_ROOT b、设置Path
编辑Path,在后面追加4个环境...
分类:
移动开发 时间:
2014-04-30 01:02:38
阅读次数:
626
1、查看当前Python版本python -V2、查看当前CentOS版本cat
/etc/redhat-release3、安装所有的开发工具包yum groupinstall "Development tools"4、安装其他必须包yum
install zlib-devel bzip2-deve...
分类:
编程语言 时间:
2014-04-30 00:59:31
阅读次数:
443
Hadoop2.3.0+Hbase0.96.1.1+Hive0.14.0+Zookeeper3.4.6+Sqoop1.99.3安装配置流程
一、 配置Hadoop
源码包:hadoop-2.3.0-src.tar.gz
1. 安装以下软件:
yum -yinstall lzo-devel zlib-devel gcc autoconf automake li...
分类:
其他好文 时间:
2014-04-29 13:37:20
阅读次数:
541
出现“CHECK_NRPE: Error - Could not complete SSL handshake.”的错误。
问题解决的步骤:
1. 确保openssh , openssl, openssl-devel版本一致。
在centOS 上,可以运行:
yum install openssl openssl-devel
2. nagios监控端的允许地址和...
分类:
其他好文 时间:
2014-04-27 22:18:19
阅读次数:
988
" checking for SSL headers... configure: error: Cannot find ssl headers"
原因是缺少openssl-devel,安装这个库就可以解决问题。
yum -y install openssl-devel...
分类:
其他好文 时间:
2014-04-27 21:32:05
阅读次数:
283