??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲.欧美.日本.国产综合在线,亚洲精品国产精品乱码不99按摩
,欧美少妇一区二区 http://www.aygfsteel.com/antz/category/14558.htmlzh-cn Mon, 11 Feb 2008 22:12:43 GMT Mon, 11 Feb 2008 22:12:43 GMT 60 q壳IP问题 http://www.aygfsteel.com/antz/archive/2008/02/11/179626.html蚂?/dc:creator>蚂?/author>Mon, 11 Feb 2008 10:36:00 GMT http://www.aygfsteel.com/antz/archive/2008/02/11/179626.html http://www.aygfsteel.com/antz/comments/179626.html http://www.aygfsteel.com/antz/archive/2008/02/11/179626.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/179626.html http://www.aygfsteel.com/antz/services/trackbacks/179626.html q壳的IP地址和实际公|的地址不一致问题一直没得到解决,询问客服也没有解决的办法,通过观察,我发C是每ơ拨号都会出现IP不一致的情况,说明我的ISP只在一定范围内安装了NAT转发的设?自己写了个脚?比较q壛_wan ip,如果不一?׃新拨号分配一个新IP,q行了半个月,效果蛮好,可惜了我?00元升U专业用?
--------------------------------
#!/bin
# wan.sh
#get wan ip from TP-LINK route
wanip=`wget --user=admin --password=admin -q -O - http://192.168.2.1/userRpm/StatusRpm.htm |\
grep "00-50-FC-77-C9-06" |\
awk -F, '{print $3}' | tr -d ' "'`
echo "$wanip"
----------------------------------------------
#!/bin/sh
# fixip.sh
#fix vicp ip
export PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/phlinux"
disUrl='http://192.168.2.1/userRpm/StatusRpm.htm?Disconnect=?20开&wan=1'
conUrl='http://192.168.2.1/userRpm/StatusRpm.htm?Connect=q?20?amp;wan=1'
wg='wget -q --user=admin --password=admin -O - '
c=0
while [ "$c" -lt "5" ]
do
wip=`wan.sh`
vicp=`nslookup myhome.vicp.net | tail -n2 | grep "Address" | awk '{print $2}'`
if [ "$wip" == "$vicp" ]; then
echo "Match done."
exit 0
fi
echo "my wan ip : "$wip
echo "myhome.vicp.net : "$vicp
echo "Fix ip ..."
if [ -n wip ]; then
echo " disconnect PPPoe ..."
`$wg $disUrl > /dev/null`
sleep 3
fi
echo " connect PPPoE ..."
`$wg $conUrl > /dev/null`
sleep 37
c=`expr $c + 1`
done
]]>PostgreSQL http://www.aygfsteel.com/antz/archive/2007/04/13/110547.html蚂?/dc:creator>蚂?/author>Fri, 13 Apr 2007 14:59:00 GMT http://www.aygfsteel.com/antz/archive/2007/04/13/110547.html http://www.aygfsteel.com/antz/comments/110547.html http://www.aygfsteel.com/antz/archive/2007/04/13/110547.html#Feedback 1 http://www.aygfsteel.com/antz/comments/commentRss/110547.html http://www.aygfsteel.com/antz/services/trackbacks/110547.html ]]> python 2.4.4 http://www.aygfsteel.com/antz/archive/2007/04/13/110396.html蚂?/dc:creator>蚂?/author>Fri, 13 Apr 2007 04:02:00 GMT http://www.aygfsteel.com/antz/archive/2007/04/13/110396.html http://www.aygfsteel.com/antz/comments/110396.html http://www.aygfsteel.com/antz/archive/2007/04/13/110396.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/110396.html http://www.aygfsteel.com/antz/services/trackbacks/110396.html python升?.4.4后发现所有牵涉到socket的模块都无法使用Q上|找相关资料Q发现居然连作者也不知道原因,没办法从package-6.1-release里装回python-2.4.2Q但py24-bsddb3无法使用Q只能用py24-bsddb-2.4.2_2Q被q奇怪的问题折腾到半?点,原来惛_腾berkeley db的兴被弄得一点也没了?
]]> Lighttpd mod_cgi 内存用量增大的解军_?/title> http://www.aygfsteel.com/antz/archive/2007/04/04/108401.html蚂?/dc:creator>蚂?/author>Wed, 04 Apr 2007 04:09:00 GMT http://www.aygfsteel.com/antz/archive/2007/04/04/108401.html http://www.aygfsteel.com/antz/comments/108401.html http://www.aygfsteel.com/antz/archive/2007/04/04/108401.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/108401.html http://www.aygfsteel.com/antz/services/trackbacks/108401.html 用spca5xx做的Livecam通过CGI在lighttpd下实现L个问题:client|速慢的时候lighttpd的内存用量会不断增加Q一直到把系l榨qԌ没办法硬着头皮看lighttpd的mod_cgi源码Q通过分析发现Q?br> while(1) { int n;
buffer_prepare_copy(hctx->response, 1024); if (-1 == (n = read(hctx->fd, hctx->response->ptr, hctx->response->size - 1))) { if (errno == EAGAIN || errno == EINTR) { /* would block, wait for signal */ return FDEVENT_HANDLED_NOT_FINISHED; } ...... } else { http_chunk_append_mem(srv, con, hctx->response->ptr, hctx->response->used); joblist_append(srv, con); } mod_cgi通过hctx->fd从cgid数据Q然后由http_chunk_append_men()提交到后収ͼ但chunk_append却没有限制内存的使用Q当从cgid的速度快过提交lclient速度时内存用量就会不断增加。本来想通过signal来同步cgi的采P但这样太ȝ而且会破坏mod_cgi的结构,试着在read(hctx->fd...前加个阻塞判断: if (http_chunkqueue_length(server *srv, connection *con) > 102400) { return FDEVENT_HANDLED_NOT_FINISHED; } if (-1==(n=read(hctx->fd... 然后在spca5shot里每采样一frame加个sleep(1)Q运行几天看效果再说
]]> CGI 道 http://www.aygfsteel.com/antz/archive/2007/03/23/105680.html蚂?/dc:creator>蚂?/author>Thu, 22 Mar 2007 16:49:00 GMT http://www.aygfsteel.com/antz/archive/2007/03/23/105680.html http://www.aygfsteel.com/antz/comments/105680.html http://www.aygfsteel.com/antz/archive/2007/03/23/105680.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/105680.html http://www.aygfsteel.com/antz/services/trackbacks/105680.html ]]> FreeBSD 蓝牙问题 http://www.aygfsteel.com/antz/archive/2007/03/20/105109.html蚂?/dc:creator>蚂?/author>Tue, 20 Mar 2007 14:19:00 GMT http://www.aygfsteel.com/antz/archive/2007/03/20/105109.html http://www.aygfsteel.com/antz/comments/105109.html http://www.aygfsteel.com/antz/archive/2007/03/20/105109.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/105109.html http://www.aygfsteel.com/antz/services/trackbacks/105109.html ]]> inetd http://www.aygfsteel.com/antz/archive/2007/01/20/95041.html蚂?/dc:creator>蚂?/author>Sat, 20 Jan 2007 06:05:00 GMT http://www.aygfsteel.com/antz/archive/2007/01/20/95041.html http://www.aygfsteel.com/antz/comments/95041.html http://www.aygfsteel.com/antz/archive/2007/01/20/95041.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/95041.html http://www.aygfsteel.com/antz/services/trackbacks/95041.html ]]> 讄FreeBSD控制台分辨率Q网上资料) http://www.aygfsteel.com/antz/archive/2006/12/28/90503.html蚂?/dc:creator>蚂?/author>Thu, 28 Dec 2006 07:34:00 GMT http://www.aygfsteel.com/antz/archive/2006/12/28/90503.html http://www.aygfsteel.com/antz/comments/90503.html http://www.aygfsteel.com/antz/archive/2006/12/28/90503.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/90503.html http://www.aygfsteel.com/antz/services/trackbacks/90503.html 1. 建立内核配置文ggraph # cd /sys/i386/conf # cp GENERIC graph ~辑配置文ggraphQ在其中加入两行: options VESA options SC_PIXEL_MODE W一行选项让內核支持VESA 2Q第二行让内核支持控制台囑Ş模式?br />
2. ~译q安装内?br /># config graph
# cd ../compile/graph
# make cleandepend
# make depend
# make
# make install
重新启动:
reboot
3. Ȁz高分L率模?br />?vidcontrol -i mode|grep G 来查看支持MODE的列表,注意W一列的LQ你可能会用刎ͼ?79
?vidcontrol MODE_279 来更改分辨率(我最高能?280X1024Q字太小了我受不了,呵呵)
如果惛_动时生效Q就?/etc/rc.conf 加入 allscreens_flags="MODE_279
]]> FreeBSD Video API http://www.aygfsteel.com/antz/archive/2006/12/28/90435.html蚂?/dc:creator>蚂?/author>Thu, 28 Dec 2006 02:09:00 GMT http://www.aygfsteel.com/antz/archive/2006/12/28/90435.html http://www.aygfsteel.com/antz/comments/90435.html http://www.aygfsteel.com/antz/archive/2006/12/28/90435.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/90435.html http://www.aygfsteel.com/antz/services/trackbacks/90435.html ]]> 对BSD的一Ҏ?/title> http://www.aygfsteel.com/antz/archive/2006/12/23/89657.html蚂?/dc:creator>蚂?/author>Sat, 23 Dec 2006 06:02:00 GMT http://www.aygfsteel.com/antz/archive/2006/12/23/89657.html http://www.aygfsteel.com/antz/comments/89657.html http://www.aygfsteel.com/antz/archive/2006/12/23/89657.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/89657.html http://www.aygfsteel.com/antz/services/trackbacks/89657.html ]]> Makefile http://www.aygfsteel.com/antz/archive/2006/12/06/85877.html蚂?/dc:creator>蚂?/author>Wed, 06 Dec 2006 08:31:00 GMT http://www.aygfsteel.com/antz/archive/2006/12/06/85877.html http://www.aygfsteel.com/antz/comments/85877.html http://www.aygfsteel.com/antz/archive/2006/12/06/85877.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/85877.html http://www.aygfsteel.com/antz/services/trackbacks/85877.html ]]> Lighttpd http://www.aygfsteel.com/antz/archive/2006/12/02/85094.html蚂?/dc:creator>蚂?/author>Sat, 02 Dec 2006 14:08:00 GMT http://www.aygfsteel.com/antz/archive/2006/12/02/85094.html http://www.aygfsteel.com/antz/comments/85094.html http://www.aygfsteel.com/antz/archive/2006/12/02/85094.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/85094.html http://www.aygfsteel.com/antz/services/trackbacks/85094.html ]]> Servlet action is not available http://www.aygfsteel.com/antz/archive/2006/10/08/73745.html蚂?/dc:creator>蚂?/author>Sun, 08 Oct 2006 04:06:00 GMT http://www.aygfsteel.com/antz/archive/2006/10/08/73745.html http://www.aygfsteel.com/antz/comments/73745.html http://www.aygfsteel.com/antz/archive/2006/10/08/73745.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/73745.html http://www.aygfsteel.com/antz/services/trackbacks/73745.html ]]> Live Audio Server http://www.aygfsteel.com/antz/archive/2006/08/28/66142.html蚂?/dc:creator>蚂?/author>Mon, 28 Aug 2006 04:10:00 GMT http://www.aygfsteel.com/antz/archive/2006/08/28/66142.html http://www.aygfsteel.com/antz/comments/66142.html http://www.aygfsteel.com/antz/archive/2006/08/28/66142.html#Feedback 0 http://www.aygfsteel.com/antz/comments/commentRss/66142.html http://www.aygfsteel.com/antz/services/trackbacks/66142.html ]]>
վ֩ģ壺
|
ְ |
̨ |
α |
Ϫ |
|
ѧ |
ֽ |
|
|
Ϫ |
Ƹ |
|
|
żҿ |
ƽ |
|
|
ĩ |
Ҷ |
|
|
|
|
|
|
߱ |
|
º |
|
|
|
|
|
|
˻ |
ų |
|
С |
|
² |