<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CODIGG &#187; Linux/Server</title>
	<atom:link href="http://www.codigg.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codigg.com</link>
	<description>关注互联网，关注云计算，关注生活</description>
	<lastBuildDate>Tue, 31 Aug 2010 03:04:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux下无法使用google earth 5.2的问题</title>
		<link>http://www.codigg.com/2010/07/linux-google-earth-crash-ubuntu/</link>
		<comments>http://www.codigg.com/2010/07/linux-google-earth-crash-ubuntu/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 08:06:41 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[google earth]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=792</guid>
		<description><![CDATA[google了一下，很多人遇到这个问题。

解决方法



?View Code BASHcd /opt/google-earth

wget http://librarian.launchpad.net/7037027/libGL.so.1 -O libGL.so.1

<span class="readmore"><a href="http://www.codigg.com/2010/07/linux-google-earth-crash-ubuntu/" title="Linux下无法使用google earth 5.2的问题">阅读全文——共125字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/" title="《Linux 101 Hacks》中文版(Linux常用101个小技巧) 2010.03.29">《Linux 101 Hacks》中文版(Linux常用101个小技巧)</a>(1)</li>
<li><a href="http://www.codigg.com/2010/03/linux-baby-rocker-bash-shell/" title="几行代码搞定哄小孩问题(转载) 2010.03.22">几行代码搞定哄小孩问题(转载)</a>(0)</li>
</ul><h3>最近评论</h3><ul></ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/07/linux-google-earth-crash-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alexa排名实时查询接口</title>
		<link>http://www.codigg.com/2010/04/alexa-rank-query-api/</link>
		<comments>http://www.codigg.com/2010/04/alexa-rank-query-api/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 11:08:18 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[Alexa]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[rank]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=719</guid>
		<description><![CDATA[测试效果如下：









<span class="readmore"><a href="http://www.codigg.com/2010/04/alexa-rank-query-api/" title="Alexa排名实时查询接口">阅读全文——共515字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2009/08/traffic-ip-rank-tools/" title="流量、IP、Alexa排名互刷工具 2009.08.10">流量、IP、Alexa排名互刷工具</a>(8)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.wuzesheng.com" >小武哥</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/alexa-rank-query-api/#comment-84922" title="View the entire comment by 小武哥" >不错的工具~ 赞一个！</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/04/alexa-rank-query-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>lighttpd不支持Expect: 100-continue的解决办法</title>
		<link>http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/</link>
		<comments>http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 05:46:32 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[JAVA]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=710</guid>
		<description><![CDATA[由于lighttpd1.4.21之前的版本不支持Expect: 100-continue，所以有可能访问出现“HTTP/1.1 417 Expectation Failed”等错误提示，搜集整理了很多解决方法，如下：

1. 升级到 lighttpd 1.5.x，那应该没有这个问题了

2. （推荐）升级到 lighttpd 1.4.21 或以上版本（即最新的realease版本），在配置文件中加上一句



?View Code BASHserver.reject-expect-100-with-417=&#34;disabled&#34;

<span class="readmore"><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法">阅读全文——共564字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(1)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
<li><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下 2010.08.16">搞清楚php中$_REQUEST变量的问题，备忘一下</a>(3)</li>
<li><a href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/" title="Java程序内存分析:JMap与Eclipse Memory Analyzer 2010.07.27">Java程序内存分析:JMap与Eclipse Memory Analyzer</a>(0)</li>
<li><a href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/" title="下载远程ftp文件备份到本地的脚本 2010.04.7">下载远程ftp文件备份到本地的脚本</a>(4)</li>
<li><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool 2010.03.24">安装php rrdtool</a>(3)</li>
<li><a href="http://www.codigg.com/2010/03/web-server-header-apache-lighttpd-nginx/" title="伪装WEB服务器(apache/lighttpd/nginx) 2010.03.20">伪装WEB服务器(apache/lighttpd/nginx)</a>(0)</li>
<li><a href="http://www.codigg.com/2009/12/qinghuaci-java/" title="青花瓷 java版 2009.12.30">青花瓷 java版</a>(1)</li>
<li><a href="http://www.codigg.com/2009/12/shell-curl-ftp-upload-download-delete/" title="shell命令：使用curl操作ftp（上传、下载、删除等） 2009.12.3">shell命令：使用curl操作ftp（上传、下载、删除等）</a>(2)</li>
<li><a href="http://www.codigg.com/2009/09/proxy-server-real-ip-lighttpd-apache/" title="proxy server后的apache如何获取用户真实IP 2009.09.3">proxy server后的apache如何获取用户真实IP</a>(0)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84917" title="View the entire comment by Codigg" >我晕，这个是成人网站! -_-|||</a></li>
<li><a class="commentor" href="http://www.ddsofts.com" >john</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84911" title="View the entire comment by john" >已做好贵站链接，以后常来串门啊</a></li>
<li><a class="commentor" href="http://caoliu888.tk/" >草榴最新地址</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84900" title="View the entire comment by 草榴最新地址" >主题不错哈</a></li>
<li><a class="commentor" href="http://www.se7ens.cn" >老七</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/#comment-84891" title="View the entire comment by 老七" >技术文。。我感觉一头雾水。。</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SuSE FTP Client 连接服务器无法list的问题</title>
		<link>http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/</link>
		<comments>http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 06:20:43 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[epsv]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[suse]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=708</guid>
		<description><![CDATA[服务器修改了组网结构，同事反馈FTP命令无法使用了，现象如下：

CODIGG-SUSE # ftp user@www.codigg.com

 Connected to www.codigg.com.

220 Welcome

331 Welcome &#8216;user&#8217;, enter password to login.

<span class="readmore"><a href="http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/" title="SuSE FTP Client 连接服务器无法list的问题">阅读全文——共947字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/" title="下载远程ftp文件备份到本地的脚本 2010.04.7">下载远程ftp文件备份到本地的脚本</a>(4)</li>
<li><a href="http://www.codigg.com/2009/12/shell-curl-ftp-upload-download-delete/" title="shell命令：使用curl操作ftp（上传、下载、删除等） 2009.12.3">shell命令：使用curl操作ftp（上传、下载、删除等）</a>(2)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/#comment-84880" title="View the entire comment by Codigg" >遇到问题半天搞不定的时候，就觉得这话反过来说可能要恰当一点：都是被技术...</a></li>
<li><a class="commentor" href="http://www.wuzesheng.com" >小武哥</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/#comment-84843" title="View the entire comment by 小武哥" >都是搞技术的淫啊~</a></li>
<li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/#comment-84800" title="View the entire comment by Codigg" >这些是平时遇到的问题，摸索的解决办法，写下来，一个是自己备忘；另一方面是给其他需要的人一些参考意见~...</a></li>
<li><a class="commentor" href="http://www.yzznl.cn/" >园子</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/#comment-84791" title="View the entire comment by 园子" >有些专业了
看不大懂。</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>网络监听工具tcpdump常用命令</title>
		<link>http://www.codigg.com/2010/04/tcpdump-command-sniff/</link>
		<comments>http://www.codigg.com/2010/04/tcpdump-command-sniff/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:42:42 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[tcpdump]]></category>
		<category><![CDATA[监听]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=668</guid>
		<description><![CDATA[先解释一下tcpdump的结果格式（参考《鸟哥的Linux私房菜》），下面的数据直接用tcpdump命令截取：

04:00:59.483389 IP 192.168.1.1.ssh &#62; 192.168.1.2.netuitive: P 46808:46956(148) ack 365 win 12864



04:00:59.483389 ： 通讯发生的时间

IP ： 此通讯所采用的协议

<span class="readmore"><a href="http://www.codigg.com/2010/04/tcpdump-command-sniff/" title="网络监听工具tcpdump常用命令">阅读全文——共834字</a></span><h3>相关文章</h3><ul><li>0</li></ul><h3>最近评论</h3><ul><li><a class="commentor" href="" >＠liaozibo</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/tcpdump-command-sniff/#comment-85201" title="View the entire comment by ＠liaozibo" >他们抓包分析就是用的这个吧，，，呵呵。</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/04/tcpdump-command-sniff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>下载远程ftp文件备份到本地的脚本</title>
		<link>http://www.codigg.com/2010/04/ftp-curl-backup-shell/</link>
		<comments>http://www.codigg.com/2010/04/ftp-curl-backup-shell/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 04:13:14 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=664</guid>
		<description><![CDATA[同事让我帮忙写的脚本。

FTP上每天有更新文件，名字是用日期命名（如日志等），但ftp空间有限，因此要求每天将前一天的文件下载到本地，然后删除ftp上10天前的文件。

用之前的一篇文章加以拼装就能实现：使用curl操作ftp（上传、下载、删除等）

http://www.codigg.com/2009/12/shell-curl-ftp-upload-download-delete/

最后的脚本如下：

<span class="readmore"><a href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/" title="下载远程ftp文件备份到本地的脚本">阅读全文——共915字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2009/12/shell-curl-ftp-upload-download-delete/" title="shell命令：使用curl操作ftp（上传、下载、删除等） 2009.12.3">shell命令：使用curl操作ftp（上传、下载、删除等）</a>(2)</li>
<li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
<li><a href="http://www.codigg.com/2010/04/suse-ftp-client-list-ls-failed/" title="SuSE FTP Client 连接服务器无法list的问题 2010.04.11">SuSE FTP Client 连接服务器无法list的问题</a>(4)</li>
<li><a href="http://www.codigg.com/2010/03/linux-baby-rocker-bash-shell/" title="几行代码搞定哄小孩问题(转载) 2010.03.22">几行代码搞定哄小孩问题(转载)</a>(0)</li>
<li><a href="http://www.codigg.com/2010/02/shell-date-script/" title="两个小脚本 2010.02.25">两个小脚本</a>(0)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/#comment-84532" title="View the entire comment by Codigg" >服务器基本都是linux的，而且机房速度还快~~
最主要脚本写几行代码就能实现，也要不了多少时间~...</a></li>
<li><a class="commentor" href="http://www.yzznl.cn/" >园子</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/#comment-84521" title="View the entire comment by 园子" >还从来没有用过脚本折腾过FTP呢。</a></li>
<li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/#comment-84508" title="View the entire comment by Codigg" >呵呵，谢谢。你的博客很不错~~~</a></li>
<li><a class="commentor" href="http://www.itopdog.cn" >itopdog</a> : <a class="comment_content" href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/#comment-84506" title="View the entire comment by itopdog" >坐个沙发，支持你</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/04/ftp-curl-backup-shell/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>《Linux 101 Hacks》中文版(Linux常用101个小技巧)</title>
		<link>http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/</link>
		<comments>http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 13:17:25 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[技巧]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=609</guid>
		<description><![CDATA[<a href="http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/"><img align="left" hspace="5" width="150" height="150" src="http://www.codigg.com/wp-content/uploads/2010/03/linux-101-hacks-150x150.jpg" class="alignleft wp-post-image tfe" alt="" title="linux-101-hacks" /></a>本书中共介绍了101条技巧，以此来帮助你打下坚实的Linux系统管理的基础。每条技巧中都有与之对应的示例来帮助你理解。

原网站下载网页： 《Linux 101 Hacks》中文版

直接点的下载地址：这里也可以直接下载

为了方便各位在下载之前评估自己是否还需要看此书，给出它的目录结构吧：

第一章：强大的CD命令技巧

<span class="readmore"><a href="http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/" title="《Linux 101 Hacks》中文版(Linux常用101个小技巧)">阅读全文——共2723字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/07/linux-google-earth-crash-ubuntu/" title="Linux下无法使用google earth 5.2的问题 2010.07.27">Linux下无法使用google earth 5.2的问题</a>(0)</li>
<li><a href="http://www.codigg.com/2010/03/linux-baby-rocker-bash-shell/" title="几行代码搞定哄小孩问题(转载) 2010.03.22">几行代码搞定哄小孩问题(转载)</a>(0)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="" >liaozibo</a> : <a class="comment_content" href="http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/#comment-84024" title="View the entire comment by liaozibo" >好书阿，，，，，下载了。谢谢分享</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>安装php rrdtool</title>
		<link>http://www.codigg.com/2010/03/php-rrdtool-install/</link>
		<comments>http://www.codigg.com/2010/03/php-rrdtool-install/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 14:26:18 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[rrdtool]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=583</guid>
		<description><![CDATA[RRDTool 是由Tobias Oetiker 开发的自由软件，它使用RRD （ Round Robin Database ）作为存储格式， Round robin 是一种处理定量数据以及当前元素指针的技术。rrdtool主要用来跟踪对象变化情况，用来生成这些变化的走势。如服务器状态、股票、天气温度等。

简单写一下php_rrdtool的安装方法



?View Code BASH# 下载

wget http://oss.oetiker.ch/rrdtool/pub/contrib/php_rrdtool.tar.gz

<span class="readmore"><a href="http://www.codigg.com/2010/03/php-rrdtool-install/" title="安装php rrdtool">阅读全文——共811字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/08/php-request-cookie/" title="搞清楚php中$_REQUEST变量的问题，备忘一下 2010.08.16">搞清楚php中$_REQUEST变量的问题，备忘一下</a>(3)</li>
<li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(1)</li>
<li><a href="http://www.codigg.com/2009/09/php-curl-download-filename/" title="php curl下载文件时保存原文件名 2009.09.6">php curl下载文件时保存原文件名</a>(1)</li>
<li><a href="http://www.codigg.com/2009/05/7-free-powerful-file-managers-1/" title="7款php/ajax/js实现的免费web文件管理工具（上） 2009.05.26">7款php/ajax/js实现的免费web文件管理工具（上）</a>(0)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="" >pipa</a> : <a class="comment_content" href="http://www.codigg.com/2010/03/php-rrdtool-install/#comment-85211" title="View the entire comment by pipa" >rrdtool应该不支持php-cgi方式。。。搞了半天没搞定</a></li>
<li><a class="commentor" href="http://www.codigg.com" >Codigg</a> : <a class="comment_content" href="http://www.codigg.com/2010/03/php-rrdtool-install/#comment-84150" title="View the entire comment by Codigg" >这几天比较忙，回头再详细介绍一下后面的使用。出差半年，在博客上忽悠大家很多次了，希望这次能兑现~~</a></li>
<li><a class="commentor" href="" >路过</a> : <a class="comment_content" href="http://www.codigg.com/2010/03/php-rrdtool-install/#comment-83755" title="View the entire comment by 路过" >这个好用，谢谢了~</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/03/php-rrdtool-install/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>几行代码搞定哄小孩问题(转载)</title>
		<link>http://www.codigg.com/2010/03/linux-baby-rocker-bash-shell/</link>
		<comments>http://www.codigg.com/2010/03/linux-baby-rocker-bash-shell/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 11:47:11 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=578</guid>
		<description><![CDATA[创新改变世界。



?View Code BASHwhile &#91;1 = 1&#93;

do

#弹出光驱

<span class="readmore"><a href="http://www.codigg.com/2010/03/linux-baby-rocker-bash-shell/" title="几行代码搞定哄小孩问题(转载)">阅读全文——共74字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/07/linux-google-earth-crash-ubuntu/" title="Linux下无法使用google earth 5.2的问题 2010.07.27">Linux下无法使用google earth 5.2的问题</a>(0)</li>
<li><a href="http://www.codigg.com/2010/04/ftp-curl-backup-shell/" title="下载远程ftp文件备份到本地的脚本 2010.04.7">下载远程ftp文件备份到本地的脚本</a>(4)</li>
<li><a href="http://www.codigg.com/2010/03/linux-101-hacks-chinese-edition-tips/" title="《Linux 101 Hacks》中文版(Linux常用101个小技巧) 2010.03.29">《Linux 101 Hacks》中文版(Linux常用101个小技巧)</a>(1)</li>
<li><a href="http://www.codigg.com/2010/02/shell-date-script/" title="两个小脚本 2010.02.25">两个小脚本</a>(0)</li>
</ul><h3>最近评论</h3><ul></ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/03/linux-baby-rocker-bash-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>伪装WEB服务器(apache/lighttpd/nginx)</title>
		<link>http://www.codigg.com/2010/03/web-server-header-apache-lighttpd-nginx/</link>
		<comments>http://www.codigg.com/2010/03/web-server-header-apache-lighttpd-nginx/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 05:11:15 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[Linux/Server]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=572</guid>
		<description><![CDATA[通过命令：



?View Code BASH# curl -s -I www.codigg.com &#124; fgrep 'Server'

Server: Apache/2.0.52 &#40;Red Hat&#41;



<span class="readmore"><a href="http://www.codigg.com/2010/03/web-server-header-apache-lighttpd-nginx/" title="伪装WEB服务器(apache/lighttpd/nginx)">阅读全文——共623字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2009/09/proxy-server-real-ip-lighttpd-apache/" title="proxy server后的apache如何获取用户真实IP 2009.09.3">proxy server后的apache如何获取用户真实IP</a>(0)</li>
<li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(4)</li>
</ul><h3>最近评论</h3><ul></ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/03/web-server-header-apache-lighttpd-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
