<?xml version="1.0" encoding="gb2312"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>ch1v4n(樵夫)的博客</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/" />
<modified>2005-03-18T05:54:57Z</modified>
<tagline></tagline>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1</id>
<generator url="http://www.movabletype.org/" version="3.11">Movable Type</generator>
<copyright>Copyright (c) 2005, ch1v4n</copyright>
<entry>
<title>Redirect Failing URLs To Other Webserver</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/03/redirect_failin.html" />
<modified>2005-03-18T05:54:57Z</modified>
<issued>2005-03-18T05:54:57Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.165</id>
<created>2005-03-18T05:54:57Z</created>
<summary type="text/plain">Description: A typical FAQ about URL rewriting is how to redirect failing requests on webserver A to webserver B. Usually this is done via ErrorDocument CGI-scripts in Perl, but there is also a mod_rewrite solution. But notice that this is...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Common Tech</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>Description:<br />
    A typical FAQ about URL rewriting is how to redirect failing requests on webserver A to webserver B. Usually this is done via ErrorDocument CGI-scripts in Perl, but there is also a mod_rewrite solution. But notice that this is less performant than using a ErrorDocument CGI-script!<br />
Solution:<br />
    The first solution has the best performance but less flexibility and is less error safe:</p>

<p>RewriteEngine on<br />
RewriteCond   /your/docroot/%{REQUEST_FILENAME} !-f<br />
RewriteRule   ^(.+)                             http://webserverB.dom/$1</p>

<p>    The problem here is that this will only work for pages inside the DocumentRoot. While you can add more Conditions (for instance to also handle homedirs, etc.) there is better variant:</p>

<p>RewriteEngine on<br />
RewriteCond   %{REQUEST_URI} !-U<br />
RewriteRule   ^(.+)          http://webserverB.dom/$1</p>

<p>    This uses the URL look-ahead feature of mod_rewrite. The result is that this will work for all types of URLs and is a safe way. But it does a performance impact on the webserver, because for every request there is one more internal subrequest. So, if your webserver runs on a powerful CPU, use this one. If it is a slow machine, use the first approach or better a ErrorDocument CGI-script.</p>]]>

</content>
</entry>
<entry>
<title>LinkSys Vlan &amp; Trunk Configuration</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/03/linksys_vlan_tr.html" />
<modified>2005-03-14T06:00:41Z</modified>
<issued>2005-03-14T06:00:20Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.164</id>
<created>2005-03-14T06:00:20Z</created>
<summary type="text/plain"></summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Networking</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p><img alt="linksys vlan.GIF" src="http://www.hikz.com/ch1v4n/mt/archives/linksys vlan.GIF" width="638" height="223" /><br />
</p>]]>

</content>
</entry>
<entry>
<title>新买了WLAN AP</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/03/aaoaeewlan_ap.html" />
<modified>2005-03-13T14:31:02Z</modified>
<issued>2005-03-13T14:31:02Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.163</id>
<created>2005-03-13T14:31:02Z</created>
<summary type="text/plain">TP_LINK, 230块的那张 支持802.11b 信号很不错，架在三楼，一楼、楼下汽车里信号都不错，穿透力很强。...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Misc</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>TP_LINK, 230块的那张<br />
支持802.11b<br />
信号很不错，架在三楼，一楼、楼下汽车里信号都不错，穿透力很强。</p>]]>

</content>
</entry>
<entry>
<title>VLAN配置笔记</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/03/vlanaeoeaec.html" />
<modified>2005-03-11T06:52:46Z</modified>
<issued>2005-03-11T06:52:46Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.162</id>
<created>2005-03-11T06:52:46Z</created>
<summary type="text/plain">各Vlan地址,DHCP池均在会聚层上做 接入层仅需将访问端口分配给不同的VLAN 会聚和接入分别配置Trunk和VLAN信息 在会聚层上做三层交换 暂时将10.0.11.2作为路由器使用...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Networking</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>各Vlan地址,DHCP池均在会聚层上做<br />
接入层仅需将访问端口分配给不同的VLAN<br />
会聚和接入分别配置Trunk和VLAN信息<br />
在会聚层上做三层交换</p>

<p>暂时将10.0.11.2作为路由器使用<br />
</p>]]>

</content>
</entry>
<entry>
<title>搞定3550三层交换</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/03/a3550ea.html" />
<modified>2005-03-06T09:42:34Z</modified>
<issued>2005-03-06T09:42:34Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.161</id>
<created>2005-03-06T09:42:34Z</created>
<summary type="text/plain">环境: 通过单网卡Linux Proxy代理 在linux服务器上增加路由即可: ip route add 10.0.0.0/8 dev eth0 via 10.0.11.25...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Common Tech</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>环境:<br />
通过单网卡Linux Proxy代理<br />
在linux服务器上增加路由即可:<br />
ip route add 10.0.0.0/8 dev eth0 via 10.0.11.25</p>]]>

</content>
</entry>
<entry>
<title>SystemRescueCd homepage</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/02/systemrescuecd.html" />
<modified>2005-02-01T09:10:14Z</modified>
<issued>2005-02-01T09:10:14Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.160</id>
<created>2005-02-01T09:10:14Z</created>
<summary type="text/plain">SystemRescueCd is a linux system on a bootable cdrom for repairing your system and your data after a crash. It also aims to provide an easy way to carry out admin tasks on your computer, such as creating and editing...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Linux/Unix</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>SystemRescueCd is a linux system on a bootable cdrom for repairing your system and your data after a crash. It also aims to provide an easy way to carry out admin tasks on your computer, such as creating and editing the partitions of the hard disk. It contains a lot of system utilities (parted, partimage, fstools, ...) and basic ones (editors, midnight commander, network tools). It aims to be very easy to use: just boot from the cdrom, and you can do everything. The kernel of the system supports most important file systems (ext2/ext3, reiserfs, xfs, jfs, vfat, ntfs, iso9660), and network ones (samba and nfs).<br />
更多资料：<a title="SystemRescueCd homepage" href="http://www.sysresccd.org/">SystemRescueCd homepage</a><br />
</p>]]>

</content>
</entry>
<entry>
<title>Windows 95/98 被精简到小于 5M</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/windows_9598_oo.html" />
<modified>2005-01-26T14:59:50Z</modified>
<issued>2005-01-26T14:59:50Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.159</id>
<created>2005-01-26T14:59:50Z</created>
<summary type="text/plain">老消息了。先记在这里： 先是有报导说 Win95 被精简到 4.47M；这次又有进展，Win98 也精简到了这个尺寸！ 呵呵，有人制作小 LINUX，也有人制作小 WINDOWS 啊，看来谁都不甘落后 ;-) 详细情况看这里：Nano98（屏幕截图）http://www.etek.chalmers.se/~e8gus/nano98/...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Common Tech</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>老消息了。先记在这里：<br />
先是有报导说 Win95 被精简到 4.47M；这次又有进展，Win98 也精简到了这个尺寸！<br />
呵呵，有人制作小 LINUX，也有人制作小 WINDOWS 啊，看来谁都不甘落后 ;-)<br />
详细情况看这里：Nano98（屏幕截图）<a href="http://www.etek.chalmers.se/~e8gus/nano98">http://www.etek.chalmers.se/~e8gus/nano98/</a></p>]]>

</content>
</entry>
<entry>
<title>PGP-pretty Good Privacy</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/pgppretty_good.html" />
<modified>2005-01-21T05:19:50Z</modified>
<issued>2005-01-21T05:19:50Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.158</id>
<created>2005-01-21T05:19:50Z</created>
<summary type="text/plain">PGP—Pretty Good Privacy，是一个基于RSA公匙加密体系的邮件加密软件。可以用它对你的邮件保密以防止非授权者阅读，它还能对你的邮件加上数字签名从而使收信人可以确信邮件是你发来的。它让你可以安全地和你从未见过的人们通讯，事先并不需要任何保密的渠道用来传递密匙。它采用了：审慎的密匙管理，一种RSA和传统加密的杂合算法，用于数字签名的邮件文摘算法，加密前压缩等，还有一个良好的人机工程设计。它的功能强大，有很快的速度。而且它的源代码是免费的。 来自中国IT认证实验室...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Common Tech</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>PGP—Pretty Good Privacy，是一个基于RSA公匙加密体系的邮件加密软件。可以用它对你的邮件保密以防止非授权者阅读，它还能对你的邮件加上数字签名从而使收信人可以确信邮件是你发来的。它让你可以安全地和你从未见过的人们通讯，事先并不需要任何保密的渠道用来传递密匙。它采用了：审慎的密匙管理，一种RSA和传统加密的杂合算法，用于数字签名的邮件文摘算法，加密前压缩等，还有一个良好的人机工程设计。它的功能强大，有很快的速度。而且它的源代码是免费的。<br />
来自<a title="PGP—Pretty Good Privacy" href="http://www.chinaitlab.com/www/special/pgp.asp">中国IT认证实验室</a></p>]]>

</content>
</entry>
<entry>
<title>车载Mp3，带FM发送功能的爱国者E808MP3</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/ooemp3oefmeeiae.html" />
<modified>2005-01-20T09:15:05Z</modified>
<issued>2005-01-20T09:15:05Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.156</id>
<created>2005-01-20T09:15:05Z</created>
<summary type="text/plain">E808的最大特点就是内置专业调频发射模块，可以将MP3、WMA格式的歌曲通过车载音响无线接收并且播放出来，成为一款既可以随身携带又可做车载设备的MP3产品。该MP3采用100MHz固定频段作为发射频段，FM调频发射有效使用范围2-4米，只要将具有FM调频收音机设备调到100MHz，就可以轻松享受它所播放的音乐。价格： 899元。 来自：SOHU.COM的消息...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Misc</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>E808的最大特点就是内置专业调频发射模块，可以将MP3、WMA格式的歌曲通过车载音响无线接收并且播放出来，成为一款既可以随身携带又可做车载设备的MP3产品。该MP3采用100MHz固定频段作为发射频段，FM调频发射有效使用范围2-4米，只要将具有FM调频收音机设备调到100MHz，就可以轻松享受它所播放的音乐。价格： 899元。<br />
<img src="http://photo.sohu.com/20041104/Img222835274.jpg"><br />
来自：<a href="http://it.sohu.com/20041104/n222835266.shtml">SOHU.COM</a>的消息</p>]]>

</content>
</entry>
<entry>
<title>闲来无事，搞了个fvwm+rox桌面系统</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/ieaieaaaeeoefvw.html" />
<modified>2005-01-20T00:45:54Z</modified>
<issued>2005-01-20T00:40:14Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.155</id>
<created>2005-01-20T00:40:14Z</created>
<summary type="text/plain"> 基于Debian，初步中文化，配置文件：.fvwm2rc...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Linux/Unix</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p><a href="http://www.hikz.com/ch1v4n/mt/archives/53_6007.gif"><img alt="53_6007.gif" src="http://www.hikz.com/ch1v4n/mt/archives/53_6007.gif" width="640" height="480" border="0" /></a><br />
<a href="http://www.hikz.com/ch1v4n/mt/archives/53_6007_2.jpg"><img alt="53_6007_2.jpg" src="http://www.hikz.com/ch1v4n/mt/archives/53_6007_2.jpg" width="640" height="480" border="0" /></a><br />
基于Debian，初步中文化，配置文件：<a href="http://www.hikz.com/ch1v4n/mt/archives/.fvwm2rc.txt">.fvwm2rc</a></p>]]>

</content>
</entry>
<entry>
<title>博客被攻击</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/i.html" />
<modified>2005-01-19T02:29:09Z</modified>
<issued>2005-01-19T02:27:15Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.154</id>
<created>2005-01-19T02:27:15Z</created>
<summary type="text/plain">今日早上10点4分左右，服务器奇慢，最高负载达到20.9，apache2和mt-comments.cgi（系本博客的评论cgi程序）进程占用了大量的资源。 迅速断开网络，查看日志，发现了来自220.189.246.82对mt-comments.cgi的访问，这个IP来自宁波，于18日（昨天）凌晨4时也发动过同样的攻击。 根据日志来看，也许是MT脚本的BUG。...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Networking</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>今日早上10点4分左右，服务器奇慢，最高负载达到20.9，apache2和mt-comments.cgi（系本博客的评论cgi程序）进程占用了大量的资源。<br />
迅速断开网络，查看日志，发现了来自220.189.246.82对mt-comments.cgi的访问，这个IP来自宁波，于18日（昨天）凌晨4时也发动过同样的攻击。<br />
根据日志来看，也许是MT脚本的BUG。</p>

<p><br />
</p>]]>
<![CDATA[<p>220.189.246.82 - - [18/Jan/2005:03:24:19 +0800] "GET /cgi-bin/mt/mt-comments.cgi HTTP/1.0" 200 49 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Window<br />
s NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=17 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=15 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=6 HTTP/1.0" 200 457 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=18 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=28 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=24 HTTP/1.0" 200 445 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=25 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=27 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:44 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=11 HTTP/1.0" 200 413 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:47 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=5 HTTP/1.0" 200 415 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:47 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=13 HTTP/1.0" 200 433 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:47 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=19 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:47 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=22 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:48 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=29 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:47 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=23 HTTP/1.0" 200 443 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:51 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=9 HTTP/1.0" 200 405 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=16 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=26 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=3 HTTP/1.0" 200 419 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=4 HTTP/1.0" 200 419 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=20 HTTP/1.0" 200 411 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=21 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:04:50:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=12 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [18/Jan/2005:08:31:54 +0800] "GET /cgi-bin/mt/mt-comments.cgi HTTP/1.0" 200 49 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Window<br />
s NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:08:11:01 +0800] "GET /cgi-bin/mt/mt-comments.cgi HTTP/1.0" 200 49 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Window<br />
s NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:44 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=9 HTTP/1.0" 200 405 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:42 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=20 HTTP/1.0" 200 411 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:38 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=29 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:05:46 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=12 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:30 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=13 HTTP/1.0" 200 433 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:24 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=11 HTTP/1.0" 200 413 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:30 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=5 HTTP/1.0" 200 415 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:06:19 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=21 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:32 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=19 HTTP/1.0" 200 423 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:17 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=28 HTTP/1.0" 200 421 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:05:29 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=4 HTTP/1.0" 200 419 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:31 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=23 HTTP/1.0" 200 443 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:05:09 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=16 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:30 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=22 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:24 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=6 HTTP/1.0" 200 457 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:17 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=18 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:17 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=17 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:05:16 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=26 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:05:18 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=3 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible;<br />
 MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:17 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=24 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:17 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=27 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:17 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=25 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
220.189.246.82 - - [19/Jan/2005:10:04:17 +0800] "GET /cgi-bin/mt/mt-comments.cgi?__mode=red;id=15 HTTP/1.0" 500 702 "-" "Mozilla/4.0 (compatible<br />
; MSIE 6.0; Windows NT 5.0)"<br />
</p>]]>
</content>
</entry>
<entry>
<title>The ROX Desktop</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/the_rox_desktop.html" />
<modified>2005-01-18T04:56:25Z</modified>
<issued>2005-01-18T04:52:08Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.153</id>
<created>2005-01-18T04:52:08Z</created>
<summary type="text/plain"> ROX is a fast, user friendly desktop which makes extensive use of drag-and-drop. The interface revolves around the file manager, or filer, following the traditional Unix view that `everything is a file&apos; rather than trying to hide the filesystem...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Linux/Unix</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>    ROX is a fast, user friendly desktop which makes extensive use of drag-and-drop. The interface revolves around the file manager, or filer, following the traditional Unix view that `everything is a file' rather than trying to hide the filesystem beneath start menus, wizards, or druids. The aim is to make a system that is well designed and clearly presented. The ROX style favours using several small programs together instead of creating all-in-one mega-applications.</p>

<p><a href="http://rox.sourceforge.net/screens/desktop.png"><img src=http://rox.sourceforge.net/screens/desktop.png height=360 width=480 border=0></a><br />
<a href=http://www.stud.uni-karlsruhe.de/~ugk8/rox-fvwm.png><img src=http://www.stud.uni-karlsruhe.de/~ugk8/rox-fvwm.png height=360 width=480 border=0></a><br />
<a href=http://www.inf.sgsp.edu.pl/pub/PROGRAMY/PLD/pulpit.png><img src=http://www.inf.sgsp.edu.pl/pub/PROGRAMY/PLD/pulpit.png height=360 width=480 border=0></a><br />
<a title="RoxWiki - Home Page" href="http://rox.sourceforge.net/phpwiki/">RoxWiki - Home Page</a></p>]]>

</content>
</entry>
<entry>
<title>Dvorak布局键盘</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/dvorakoeuei.html" />
<modified>2005-01-18T03:10:47Z</modified>
<issued>2005-01-18T03:10:47Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.151</id>
<created>2005-01-18T03:10:47Z</created>
<summary type="text/plain"> 更符合人机工程的Dvorak布局键盘 详见：Introducing the Dvorak Keyboard -- Layout Diagram...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Common Tech</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p><img src="http://www.mwbrooks.com/dvorak/layout.gif"><br />
更符合人机工程的Dvorak布局键盘<br />
详见：<a title="Introducing the Dvorak Keyboard -- Layout Diagram" href="http://www.mwbrooks.com/dvorak/layout.html">Introducing the Dvorak Keyboard -- Layout Diagram</a></p>]]>

</content>
</entry>
<entry>
<title> Debian X下鼠标滚轮配置方法</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/_debian_xieaeoe.html" />
<modified>2005-01-18T02:55:14Z</modified>
<issued>2005-01-18T02:55:14Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.150</id>
<created>2005-01-18T02:55:14Z</created>
<summary type="text/plain"> 问题：Debian Unstable GNU/Linux，内核为 2.4.18-k7。滚轮鼠标的配置。 解决方法： # lsmod 对比可以使用滚动功能的 Redhat Linux 9 下的 lsmod 结果，发现必要的模块没有加入内核，于是： # modprobe input # modprobe mousedev # modprobe usbcore # modprobe usb-uhci 根据实际情况，加入需要的模块。 相应地修改 /etc/X11/XF86Config-4 中鼠标的段落： Section &quot;InputDevice&quot; Identifier &quot;Configured Mouse&quot; Driver &quot;mouse&quot; Option &quot;CorePointer&quot;...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Linux/Unix</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p> 问题：Debian Unstable GNU/Linux，内核为 2.4.18-k7。滚轮鼠标的配置。<br />
解决方法：<br />
# lsmod<br />
对比可以使用滚动功能的 Redhat Linux 9 下的 lsmod 结果，发现必要的模块没有加入内核，于是：<br />
# modprobe input<br />
# modprobe mousedev<br />
# modprobe usbcore<br />
# modprobe usb-uhci<br />
根据实际情况，加入需要的模块。<br />
相应地修改 /etc/X11/XF86Config-4 中鼠标的段落：<br />
Section "InputDevice"<br />
Identifier "Configured Mouse"<br />
Driver "mouse"<br />
Option "CorePointer"<br />
Option "Device" "/dev/input/mice"<br />
Option "Protocol" "ImPS/2"<br />
Option "Buttons" "5"<br />
Option "ZAxisMapping" "4 5"<br />
EndSection<br />
重新启动X，鼠标滚轮即可实现滚动功能。<br />
来源：<a href="http://learn.tsinghua.edu.cn/homepage/2001010752/">潘永之的主页</a></p>]]>

</content>
</entry>
<entry>
<title>fvwm的配置文件搜索顺序</title>
<link rel="alternate" type="text/html" href="http://www.hikz.com/ch1v4n/mt/archives/2005/01/fvwmaeaeoeaiaee.html" />
<modified>2005-01-17T05:48:40Z</modified>
<issued>2005-01-17T05:48:40Z</issued>
<id>tag:www.hikz.com,2005:/ch1v4n/mt//1.149</id>
<created>2005-01-17T05:48:40Z</created>
<summary type="text/plain">[FVWM][main]: &gt; Cannot read startup config file, tried: /root/.fvwm/config /usr/share/fvwm/config /root/.fvwm/.fvwm2rc /root/.fvwm2rc /usr/share/fvwm/.fvwm2rc /usr/share/fvwm/system.fvwm2rc /etc/X11/fvwm/system.fvwm2rc...</summary>
<author>
<name>ch1v4n</name>
<url>http://www.hikz.com/ch1v4n/</url>
<email>ch1v4n@gmail.com</email>
</author>
<dc:subject>Linux/Unix</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.hikz.com/ch1v4n/mt/">
<![CDATA[<p>[FVWM][main]: <<ERROR>> Cannot read startup config file, tried:<br />
        /root/.fvwm/config<br />
        /usr/share/fvwm/config<br />
        /root/.fvwm/.fvwm2rc<br />
        /root/.fvwm2rc<br />
        /usr/share/fvwm/.fvwm2rc<br />
        /usr/share/fvwm/system.fvwm2rc<br />
        /etc/X11/fvwm/system.fvwm2rc</p>]]>

</content>
</entry>

</feed>