??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲.欧美.日本.国产综合在线,亚洲精品国产精品乱码不99按摩 ,欧美少妇一区二区http://www.aygfsteel.com/antz/category/14558.htmlzh-cnMon, 11 Feb 2008 22:12:43 GMTMon, 11 Feb 2008 22:12:43 GMT60q壳IP问题http://www.aygfsteel.com/antz/archive/2008/02/11/179626.html蚂?/dc:creator>蚂?/author>Mon, 11 Feb 2008 10:36:00 GMThttp://www.aygfsteel.com/antz/archive/2008/02/11/179626.htmlhttp://www.aygfsteel.com/antz/comments/179626.htmlhttp://www.aygfsteel.com/antz/archive/2008/02/11/179626.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/179626.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/179626.htmlq壳的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



]]>
PostgreSQLhttp://www.aygfsteel.com/antz/archive/2007/04/13/110547.html蚂?/dc:creator>蚂?/author>Fri, 13 Apr 2007 14:59:00 GMThttp://www.aygfsteel.com/antz/archive/2007/04/13/110547.htmlhttp://www.aygfsteel.com/antz/comments/110547.htmlhttp://www.aygfsteel.com/antz/archive/2007/04/13/110547.html#Feedback1http://www.aygfsteel.com/antz/comments/commentRss/110547.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/110547.html

]]>
python 2.4.4http://www.aygfsteel.com/antz/archive/2007/04/13/110396.html蚂?/dc:creator>蚂?/author>Fri, 13 Apr 2007 04:02:00 GMThttp://www.aygfsteel.com/antz/archive/2007/04/13/110396.htmlhttp://www.aygfsteel.com/antz/comments/110396.htmlhttp://www.aygfsteel.com/antz/archive/2007/04/13/110396.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/110396.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/110396.htmlpython升?.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><link>http://www.aygfsteel.com/antz/archive/2007/04/04/108401.html</link><dc:creator>蚂?/dc:creator><author>蚂?/author><pubDate>Wed, 04 Apr 2007 04:09:00 GMT</pubDate><guid>http://www.aygfsteel.com/antz/archive/2007/04/04/108401.html</guid><wfw:comment>http://www.aygfsteel.com/antz/comments/108401.html</wfw:comment><comments>http://www.aygfsteel.com/antz/archive/2007/04/04/108401.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/antz/comments/commentRss/108401.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/antz/services/trackbacks/108401.html</trackback:ping><description><![CDATA[<p>用spca5xx做的Livecam通过CGI在lighttpd下实现L个问题:client|速慢的时候lighttpd的内存用量会不断增加Q一直到把系l榨qԌ没办法硬着头皮看lighttpd的mod_cgi源码Q通过分析发现Q?br> while(1) {<br>  int n;</p> <p>  buffer_prepare_copy(hctx->response, 1024);<br>  if (-1 == (n = read(hctx->fd, hctx->response->ptr, hctx->response->size - 1))) {<br>   if (errno == EAGAIN || errno == EINTR) {<br>    /* would block, wait for signal */<br>    return FDEVENT_HANDLED_NOT_FINISHED;<br>   }<br>......<br>  } else {<br>   http_chunk_append_mem(srv, con, hctx->response->ptr, hctx->response->used);<br>   joblist_append(srv, con);<br>  }<br><br>mod_cgi通过hctx->fd从cgid数据Q然后由http_chunk_append_men()提交到后収ͼ但chunk_append却没有限制内存的使用Q当从cgid的速度快过提交lclient速度时内存用量就会不断增加。本来想通过signal来同步cgi的采P但这样太ȝ而且会破坏mod_cgi的结构,试着在read(hctx->fd...前加个阻塞判断:<br>if (http_chunkqueue_length(server *srv, connection *con) > 102400) {<br>  return FDEVENT_HANDLED_NOT_FINISHED;<br>}<br>if (-1==(n=read(hctx->fd...<br><br>然后在spca5shot里每采样一frame加个sleep(1)Q运行几天看效果再说</p> <img src ="http://www.aygfsteel.com/antz/aggbug/108401.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/antz/" target="_blank">蚂?/a> 2007-04-04 12:09 <a href="http://www.aygfsteel.com/antz/archive/2007/04/04/108401.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>CGI 道http://www.aygfsteel.com/antz/archive/2007/03/23/105680.html蚂?/dc:creator>蚂?/author>Thu, 22 Mar 2007 16:49:00 GMThttp://www.aygfsteel.com/antz/archive/2007/03/23/105680.htmlhttp://www.aygfsteel.com/antz/comments/105680.htmlhttp://www.aygfsteel.com/antz/archive/2007/03/23/105680.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/105680.htmlhttp://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 GMThttp://www.aygfsteel.com/antz/archive/2007/03/20/105109.htmlhttp://www.aygfsteel.com/antz/comments/105109.htmlhttp://www.aygfsteel.com/antz/archive/2007/03/20/105109.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/105109.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/105109.html

]]>
inetdhttp://www.aygfsteel.com/antz/archive/2007/01/20/95041.html蚂?/dc:creator>蚂?/author>Sat, 20 Jan 2007 06:05:00 GMThttp://www.aygfsteel.com/antz/archive/2007/01/20/95041.htmlhttp://www.aygfsteel.com/antz/comments/95041.htmlhttp://www.aygfsteel.com/antz/archive/2007/01/20/95041.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/95041.htmlhttp://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 GMThttp://www.aygfsteel.com/antz/archive/2006/12/28/90503.htmlhttp://www.aygfsteel.com/antz/comments/90503.htmlhttp://www.aygfsteel.com/antz/archive/2006/12/28/90503.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/90503.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/90503.html1. 建立内核配置文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 APIhttp://www.aygfsteel.com/antz/archive/2006/12/28/90435.html蚂?/dc:creator>蚂?/author>Thu, 28 Dec 2006 02:09:00 GMThttp://www.aygfsteel.com/antz/archive/2006/12/28/90435.htmlhttp://www.aygfsteel.com/antz/comments/90435.htmlhttp://www.aygfsteel.com/antz/archive/2006/12/28/90435.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/90435.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/90435.html

]]>
对BSD的一Ҏ?/title><link>http://www.aygfsteel.com/antz/archive/2006/12/23/89657.html</link><dc:creator>蚂?/dc:creator><author>蚂?/author><pubDate>Sat, 23 Dec 2006 06:02:00 GMT</pubDate><guid>http://www.aygfsteel.com/antz/archive/2006/12/23/89657.html</guid><wfw:comment>http://www.aygfsteel.com/antz/comments/89657.html</wfw:comment><comments>http://www.aygfsteel.com/antz/archive/2006/12/23/89657.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/antz/comments/commentRss/89657.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/antz/services/trackbacks/89657.html</trackback:ping><description><![CDATA[用了FreeBSD一D|间后Q发现自q视野开阔了很多Q以前碰上问题后马上在Win API里翻腾,找不到办法就上网扄成的SDKQ然后自己crack一把,没有源码Q具体的机制不知道,Z问题也没办法Q只有再上网Q然后crack...Q在BSD和Linux下不一P有很多现成的解决ҎQ大多数有源码,在解决问题的同时也可以学到很多东西,最主要的是QBSD很好玩,有很多东西可以自己捣腾?img src ="http://www.aygfsteel.com/antz/aggbug/89657.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/antz/" target="_blank">蚂?/a> 2006-12-23 14:02 <a href="http://www.aygfsteel.com/antz/archive/2006/12/23/89657.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Makefilehttp://www.aygfsteel.com/antz/archive/2006/12/06/85877.html蚂?/dc:creator>蚂?/author>Wed, 06 Dec 2006 08:31:00 GMThttp://www.aygfsteel.com/antz/archive/2006/12/06/85877.htmlhttp://www.aygfsteel.com/antz/comments/85877.htmlhttp://www.aygfsteel.com/antz/archive/2006/12/06/85877.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/85877.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/85877.html

]]>
Lighttpdhttp://www.aygfsteel.com/antz/archive/2006/12/02/85094.html蚂?/dc:creator>蚂?/author>Sat, 02 Dec 2006 14:08:00 GMThttp://www.aygfsteel.com/antz/archive/2006/12/02/85094.htmlhttp://www.aygfsteel.com/antz/comments/85094.htmlhttp://www.aygfsteel.com/antz/archive/2006/12/02/85094.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/85094.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/85094.html

]]>
Servlet action is not availablehttp://www.aygfsteel.com/antz/archive/2006/10/08/73745.html蚂?/dc:creator>蚂?/author>Sun, 08 Oct 2006 04:06:00 GMThttp://www.aygfsteel.com/antz/archive/2006/10/08/73745.htmlhttp://www.aygfsteel.com/antz/comments/73745.htmlhttp://www.aygfsteel.com/antz/archive/2006/10/08/73745.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/73745.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/73745.html

]]>
Live Audio Serverhttp://www.aygfsteel.com/antz/archive/2006/08/28/66142.html蚂?/dc:creator>蚂?/author>Mon, 28 Aug 2006 04:10:00 GMThttp://www.aygfsteel.com/antz/archive/2006/08/28/66142.htmlhttp://www.aygfsteel.com/antz/comments/66142.htmlhttp://www.aygfsteel.com/antz/archive/2006/08/28/66142.html#Feedback0http://www.aygfsteel.com/antz/comments/commentRss/66142.htmlhttp://www.aygfsteel.com/antz/services/trackbacks/66142.html

]]>
վ֩ģ壺 | ְ| ̨| α| Ϫ| | ѧ| ֽ| | | Ϫ| Ƹ| | | żҿ| ƽ| | | ĩ| Ҷ| | | | | | | ߱| | º| | | | | | | ˻| ų| | С| | ²|