帮助信息./configure -help|grep mysql安装php./configure --prefix=/usr/local/fastphp --with-mysql=mysqlnd\--enable-mysqld\--with-gd\--enable-gd-native-ttf\--e...
分类:
系统相关 时间:
2015-01-29 19:13:42
阅读次数:
243
1,安装软件途中需要安装这俩,首先升级下python到2.7 or newer从python官网下载相应的source package,$tar -xJf Python-2.7.xz$cd Python-2.7$./configure --prefix=$HOME/python-2.7/ --ena...
分类:
其他好文 时间:
2015-01-29 14:06:13
阅读次数:
258
# 静态库编译配置
./configure --enable-static --disable-debug --disable-yasm --prefix=/usr/local/ffmpeg
# 动态库编译配置
./configure --enable-shared --prefix=/usr/local/ffmpeg
# 编译并安装
make
make install
# 如果安装成功,安装的...
分类:
其他好文 时间:
2015-01-29 10:34:39
阅读次数:
210
static int __init acpi_init(void)
{
int result;
if (acpi_disabled) {
printk(KERN_INFO PREFIX "Interpreter disabled.\n");
return -ENODEV;
}
acpi_kobj = kobjec...
分类:
其他好文 时间:
2015-01-27 23:35:26
阅读次数:
332
static int __init acpi_init(void)
{
int result;
if (acpi_disabled) {
printk(KERN_INFO PREFIX "Interpreter disabled.\n");
return -ENODEV;
}
acpi_kobj = kobjec...
分类:
其他好文 时间:
2015-01-27 23:30:18
阅读次数:
333
安装GMP
cd gmp*;mkdir build && cd build
../configure --prefix=/usr/local/gcc4.9.2 --enable-cxx
make;make install
安装MPFR
cd ../../mpfr*;mkdir build && cd build
../configure --prefix=/usr/local/gc...
分类:
其他好文 时间:
2015-01-27 18:38:27
阅读次数:
185
Write a function to find the longest common prefix string amongst an array of strings.
题目大意
写一个函数来找出所有字符串里最长的公共前缀。
难度系数:容易
实现
题目不难,基本思路大家都能想到,就是一些细节可能会遗漏。这个也没啥好算法,不管怎样,都需要一个个去比较。 所以没啥好说...
分类:
其他好文 时间:
2015-01-27 18:24:51
阅读次数:
103
1、Firefox@-moz-document url-prefix() { .selector { property: value; } }上面是仅仅被Firefox浏览器识别的写法,具体如:@-moz-document url-prefix() { .demo { color:lime; } }...
分类:
其他好文 时间:
2015-01-27 14:43:45
阅读次数:
188
1,set root=(hd0,msdos11)2,set prefix=(hd0,msdos11)/boot/grub3,insmod /boot/grub/i386-pc/normal.mod(此处某些电脑可以省略i386-pc这项)4,normal5,选择进入一个操作系统进行彻底修复,否则再次...
被监控端的安装与配置:tarzxfzabbix-2.4.1.tar.gzcdzabbix-2.4.1./configure--prefix=/usr/local/zabbix--enable-agent&&make&&makeinstall###########################################################################################cd/usr/local/zabbix..
分类:
其他好文 时间:
2015-01-26 23:01:21
阅读次数:
469