Tengine主配置文件Tengine安装tarzxvftengine-2.0.3.tar.gzcdtengine-2.0.3/./configure--prefix=/data/ops/app/tengine-2.0.3/--with-http_stub_status_module--with-pcre--with-http_upstream_check_modulemake&&makeinstallecho"/data/ops/app/tengine-2.0.3/sbin/n..
分类:
其他好文 时间:
2015-02-12 14:09:13
阅读次数:
328
在开发iOS应用之前,需要在苹果开发者网站注册App ID App ID 组成为: App ID Prefix(前缀)+‘.‘+ App ID Suffix(后缀) 其中前缀是由苹果公司分配的,用来标识不同的开发者,也叫Team ID, 后缀,也叫Bundle ...
分类:
移动开发 时间:
2015-02-12 12:39:08
阅读次数:
198
我们有的时候需要zlib在非PC环境下工作。
1. 下载并解压
V1.2.8:http://zlib.net/zlib-1.2.8.tar.gz
#tar zxvf zlib-1.2.8.tar.gz
2. 配置
设置安装目录和交叉编译器
#prefix=~/rootfs1CC=/home/at91/x-tools/...
分类:
其他好文 时间:
2015-02-12 07:05:53
阅读次数:
122
1下载openssh最新版本2 configure./configure --prefix= /ssh先配置一下再在本地安装。make &makeinstall3 按照/ssh包含内容从本地相应目录拷贝文件到新建目录upssh中4 编写shell文件,拷贝。 service sshd stop c....
分类:
其他好文 时间:
2015-02-10 18:41:07
阅读次数:
199
Write a function to find the longest common prefix string amongst an array of strings.class Solution {public: string longestCommonPrefix(vector &st...
分类:
其他好文 时间:
2015-02-10 14:41:50
阅读次数:
157
1.新建一个pch文件command + N , 选择 iOS -> Other -> PCHFile2.将building setting中的precompile header选项的路径添加“$(SRCROOT)/项目名称/pch文件名”(例如:$(SRCROOT)/RMWeibo/PrefixH...
分类:
其他好文 时间:
2015-02-09 22:53:13
阅读次数:
102
1,下载zabbix,并解压安装,用的是2.0.4的源码包tar-zxfzabbix-2.0.14.tar.gzcdzabbix-2.0.4./configure--prefix=/usr--sysconfdir=/etc/zabbix--enable-server---enable-agent--with-mysql=/usr/bin/mysql_config//安装路径,主配置文件路径,服务端,客户端,指定mysqluserad..
分类:
其他好文 时间:
2015-02-09 18:38:02
阅读次数:
207
1.安装libeventwgethttps://sourceforge.net/projects/levent/files/libevent/libevent-2.0/libevent-2.0.22-stable.tar.gz--no-check-certificate
tarzxvflibevent-2.0.22-stable.tar.gz-C/usr/src/
cd/usr/src/libevent-2.0.22-stable
./configure--prefix=/usr/local/libeve..
分类:
系统相关 时间:
2015-02-09 16:21:39
阅读次数:
157
cheng@chpc:/usr/src/linux-3.18.4/drivers/acpi$ grep -rn "has zero elements" ./*
匹配到二进制文件 ./acpi.o
匹配到二进制文件 ./built-in.o
./utils.c:364: printk(KERN_ERR PREFIX "[Package] has zero elements (%p...
分类:
其他好文 时间:
2015-02-08 19:32:03
阅读次数:
273
题目 Write a function to find the longest common prefix string amongst an array of strings.代码public class Solution {
public String longestCommonPrefix(String[] strs) {
if(strs.length==0) ...
分类:
其他好文 时间:
2015-02-08 16:53:08
阅读次数:
164