CactiEZ 下监控NGINX
[ 2010-09-01 00:14:55 | Author: adobo ]
我只是描述下我遇到的问题
如果你在测试第5步的过程中出现了以下信息:no (LWP::UserAgent not found),出现这个问题是perl里缺少组件,你可以按照下面的步骤解决:
# perl -MCPAN -e shell
# cpan> install LWP::UserAgent
网上是这么说解决的,但在Cacti环境下怎么也搞不定,报一堆错误!
我就找了自己的方法
-----------------------------------
cd /usr/local/src
wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/libwww-perl-5.836.tar.gz
tar -zxvf libwww-perl-5.836.tar.gz
cd libwww-perl-5.836
...
Read More...
如果你在测试第5步的过程中出现了以下信息:no (LWP::UserAgent not found),出现这个问题是perl里缺少组件,你可以按照下面的步骤解决:
# perl -MCPAN -e shell
# cpan> install LWP::UserAgent
网上是这么说解决的,但在Cacti环境下怎么也搞不定,报一堆错误!
我就找了自己的方法
-----------------------------------
cd /usr/local/src
wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/libwww-perl-5.836.tar.gz
tar -zxvf libwww-perl-5.836.tar.gz
cd libwww-perl-5.836
...
Read More...
把自己校内好友的头像排列成自己的名字,是不是很酷
[ 2010-08-28 00:03:30 | Author: adobo ]
#杰奇CMS(JIEQI CMS)在 nginx 下的REWRITE伪静态规则
[ 2010-08-18 14:19:46 | Author: adobo ]
网上找了好久,都不能用(或者说不适用于自己的站)自己写下来
#杰奇CMS(JIEQI CMS)在 nginx 下的WRITE规则
rewrite ^(.*)/bookinfo/([0-9]+)\.htm$ $1/modules/article/articleinfo.php?id=$2 last;
rewrite ^(.*)/sort([0-9]+)/([0-9]+)\.htm$ $1/modules/article/articlelist.php?class=$2&page=$3 last;
rewrite ^(.*)/letter/(.*)/([0-9]+)\.htm$ $1/modules/article/articlelist.php?initial=$2&page=$3 last;
rewrite ^(.*)/top/(.*)/([0-9]+)\.htm$ $1/modules/article/toplist.php?sort=$2 last;
#杰奇CMS(JIEQI CMS)在 nginx 下的WRITE规则
rewrite ^(.*)/bookinfo/([0-9]+)\.htm$ $1/modules/article/articleinfo.php?id=$2 last;
rewrite ^(.*)/sort([0-9]+)/([0-9]+)\.htm$ $1/modules/article/articlelist.php?class=$2&page=$3 last;
rewrite ^(.*)/letter/(.*)/([0-9]+)\.htm$ $1/modules/article/articlelist.php?initial=$2&page=$3 last;
rewrite ^(.*)/top/(.*)/([0-9]+)\.htm$ $1/modules/article/toplist.php?sort=$2 last;
解决XP下WORKSTATION启动慢导致系统启动时间过长的问题
[ 2010-08-02 09:17:58 | Author: adobo ]
通常安装过VMwareWorkstation导致系统启动过慢,经分析后,发现WORKSTATION服务启动时间较长,禁用后效果明显,可WORKSTATION是WINDOWS的共享基础服务,像我就离不开这个服务的,所以只需下面的脚本就可以解决问题了!(虚拟机路径请更具实际情况填写,要求端路径)
将以下文本复制到记事本,然后另存为"虚拟机.bat"
@echo off
title VMwareWorkstation智能启动脚本v1.0
color a
@echo ======================================
@echo VMwareWorkstation智能启动脚本 v1.0
@echo Create by Adobo
@echo QQ:100004117
...
Read More...
将以下文本复制到记事本,然后另存为"虚拟机.bat"
@echo off
title VMwareWorkstation智能启动脚本v1.0
color a
@echo ======================================
@echo VMwareWorkstation智能启动脚本 v1.0
@echo Create by Adobo
@echo QQ:100004117
...
Read More...
域名备案批量查询工具V3.0最终版[已更新至3.5]
[ 2010-07-18 21:42:05 | Author: adobo ]
本来打算要注册的,唉..算了...何必呢
放出来吧!
下载
【域名备案批量查询工具V3.0最终版】
华军分流:http://www.newhua.com/soft/106566.htm
破解教程同2.259版
http://www.beyourman.com/article.asp?id=5
最新版为V3.2版,此版本不再免费,可以试用,但要使用全功能必须注册
注册方式请关注下面的网址
http://u.beyourman.com/userreg.aspx
下载最新版备案批量查询工具V3.2.5
...
Read More...
放出来吧!
下载
华军分流:http://www.newhua.com/soft/106566.htm
破解教程同2.259版
http://www.beyourman.com/article.asp?id=5
最新版为V3.2版,此版本不再免费,可以试用,但要使用全功能必须注册
注册方式请关注下面的网址
http://u.beyourman.com/userreg.aspx
...
Read More...
啊D注入工具2.3.2 个人认为比较好的破解版的
[ 2010-06-13 16:41:51 | Author: adobo ]
ESET NOD32 ID获取器1.7.5.6 下载
[ 2010-05-31 22:59:14 | Author: adobo ]
用VB实现全局鼠标从右到左选择文本自动复制的功能
[ 2010-05-15 11:49:16 | Author: adobo ]
'好的代码段要写出来和大家分享
'Create by Adobo
'DATE:2010-5-15
'实现鼠标从右到左选择后复制功能
'获取当前坐标
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
'获取鼠标按键状态
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
'定义鼠标坐标类型
Private Type POINTAPI
x As Long
y As Long
End Type
Dim iLastX, iLastY As Integer ‘记录上次的鼠标坐标
Dim iCountX As Integer '采样次数
...
Read More...
'Create by Adobo
'DATE:2010-5-15
'实现鼠标从右到左选择后复制功能
'获取当前坐标
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
'获取鼠标按键状态
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
'定义鼠标坐标类型
Private Type POINTAPI
x As Long
y As Long
End Type
Dim iLastX, iLastY As Integer ‘记录上次的鼠标坐标
Dim iCountX As Integer '采样次数
...
Read More...










