Browse > Home / Archive: 10月 2007

| Subcribe via RSS

UNIX时间戳

10月 29th, 2007 | No Comments | Posted in Unix | by admin | 128 views |

date +%s

...

Apache CGI

10月 25th, 2007 | No Comments | Posted in Apache | by admin | 115 views |

apxs -cia mod_cgi.c
<Directory "/opt/wwwroot/DEVCENTER.51.com/cgi">
    Options +ExecCGI
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
AddHandler cgi-scrip...

Programming Windows Batch Scripts

10月 16th, 2007 | No Comments | Posted in Windows | by admin | 114 views |

Windows 快速编辑模式:
如果使用鼠标左右键来复制和粘帖?
在 ms-dos或者cmd的"属性" -->"编辑-编辑选项" -->快速编辑模式-->保存。
重定向符
   可以使用重定向符将命...

PHP安装mcrpyt模块

10月 16th, 2007 | No Comments | Posted in PHP | by admin | 127 views |

wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz
tar xzvf libmcrypt-2.5.7.tar.gz
cd libmcrpyt-2.5.7
./configure
make
make install
tar xjvf php-4.4.4.tar.bz2
cd php-4.4.4/ext/mcryp...

ICC编译Apache2,PHP5

10月 16th, 2007 | No Comments | Posted in Linux | by admin | 113 views |

cd /tmp
wget ftp://rpmfind.net/linux/redhat/updates/enterprise/4AS/en/os/SRPMS/libtool-1.5.6-4.EL4.1.src.rpm
rpm -i libtool-1.5.6-4.EL4.1.src.rpm
cd /usr/src/redhat/SPECS
rpmbuild -bp libtool.spec
cd /usr/src/redhat/BUILD...

src.rpm安装

10月 16th, 2007 | No Comments | Posted in Linux | by admin | 93 views |

安装.src.rpm软件包前需安装rpm-build包。
有些软件包是以.src.rpm结尾的,这类软件包是包含了源代码的rpm包,在安装时需要进行编译。这类软件包有两种安装方法:
方法一:
1. ...

Learning Perl 4th

10月 10th, 2007 | No Comments | Posted in Perl | by admin | 133 views |

Chapter 2 Scalar Data
     Perl将里面的变量分成单数和复数的。单数就是Scalar,指单一的事物:数字(Number)或者一个字串(string). 在Perl里面,数字和字串几乎是一个东西,都是Scalar。
  ...