码迷,mamicode.com
首页 >  
搜索关键字:prefix    ( 4726个结果
nginx主配置文件解释
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
在开发iOS应用之前,需要在苹果开发者网站注册App ID App ID 组成为: App ID Prefix(前缀)+‘.‘+ App ID Suffix(后缀) 其中前缀是由苹果公司分配的,用来标识不同的开发者,也叫Team ID, 后缀,也叫Bundle ...
分类:移动开发   时间:2015-02-12 12:39:08    阅读次数:198
安装zlib库到文件系统
我们有的时候需要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
openssh升级步骤
1下载openssh最新版本2 configure./configure --prefix= /ssh先配置一下再在本地安装。make &makeinstall3 按照/ssh包含内容从本地相应目录拷贝文件到新建目录upssh中4 编写shell文件,拷贝。 service sshd stop c....
分类:其他好文   时间:2015-02-10 18:41:07    阅读次数:199
leetcode[14]Longest Common Prefix
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
如何在Xcode6中添加pch(Precompile Prefix Header)文件?
1.新建一个pch文件command + N , 选择 iOS -> Other -> PCHFile2.将building setting中的precompile header选项的路径添加“$(SRCROOT)/项目名称/pch文件名”(例如:$(SRCROOT)/RMWeibo/PrefixH...
分类:其他好文   时间:2015-02-09 22:53:13    阅读次数:102
zabbix搭建
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
Memcached简单安装
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
内核编译之ACPI错误,ACPI: [Package] has zero elements
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
【LeetCode从零单排】No14.LongestCommonPrefix
题目    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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!