<?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>封俊的博客 &#187; 软件</title>
	<atom:link href="http://www.feng-jun.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.feng-jun.com</link>
	<description>吸收，思考，提升</description>
	<lastBuildDate>Fri, 30 Jul 2010 10:38:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>使用Amazon S3云存储自动备份服务器文件</title>
		<link>http://www.feng-jun.com/backup-server-with-amazon-s3/</link>
		<comments>http://www.feng-jun.com/backup-server-with-amazon-s3/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 05:08:29 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[备份]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/backup-server-with-amazon-s3/</guid>
		<description><![CDATA[Amazon S3是Amazon的付费云存储服务，提供高可靠性与高吞吐率的数据存储与外链，只需要根据使用量来付费，没有最低消费要求,具体价格可见此链接。

Amazon S3的客户端种类很多，我比较常用的是web端管理s3fm.com以及开源命令行工具s3cmd，后者功能较全，而且更适合服务器上的自动化管理。

服务器上选择备份的有网站文件、数据库、服务器配置文件以及各种维护脚本。每星期备份一次，并根据容量的使用情况选择合适的备份数目，自动删除早期备份文件。备份后进行日志输出，可通过浏览器查看日志。

<span class="readmore"><a href="http://www.feng-jun.com/backup-server-with-amazon-s3/" title="使用Amazon S3云存储自动备份服务器文件">阅读全文——共2285字</a></span>]]></description>
			<content:encoded><![CDATA[<p><a href="http://aws.amazon.com/s3/" target="_blank">Amazon S3</a>是Amazon的付费云存储服务，提供高可靠性与高吞吐率的数据存储与外链，只需要根据使用量来付费，没有最低消费要求,具体价格可见<a href="http://aws.amazon.com/s3/pricing/" target="_blank">此链接</a>。</p>
<p>Amazon S3的客户端种类很多，我比较常用的是web端管理<a href="http://www.s3fm.com/" target="_blank">s3fm.com</a>以及开源命令行工具<a href="http://s3tools.org/s3cmd" target="_blank">s3cmd</a>，后者功能较全，而且更适合服务器上的自动化管理。</p>
<p>服务器上选择备份的有网站文件、数据库、服务器配置文件以及各种维护脚本。每星期备份一次，并根据容量的使用情况选择合适的备份数目，自动删除早期备份文件。备份后进行日志输出，可通过浏览器查看日志。</p>
<h4></h4>
<h4>设置备份步骤：</h4>
<ol>
<li>申请Amazon.com帐号，并开通S3服务，需要输入信用卡信息并扣费1美元用于验证。</li>
<li>在Account页面的Access Credentials中，可查看Access Key ID以及Secret Access Key，前者可公开，后者要严格保密。</li>
<li>进入<a href="https://console.aws.amazon.com/s3/home" target="_blank">AWS Management Console</a>，创建Bucket， Bucket名称需要在S3服务所有Buckets中唯一，因此不能起简单或者通用的名字。创建Bucket时需选择数据中心所在区域，亚太有一个在新加坡，但没看出有速度优势。当不同的Bucket在不同的区域时，是分别计费的。创建后即可对Buckets中的文件及目录进行操作。</li>
<li>在服务器中下载S3cmd并进行安装，值得注意的是最新的release版本尚不支持<a href="http://aws.amazon.com/s3/faqs/#What_is_RRS" target="_blank">Reduced Redundancy Storage</a>,SVN版本支持。</li>
<li>安装完成后运行<code>s3cmd --configure进行配置。</code></li>
<li><code>创建相应的文件目录及脚本文件，脚本附在后面。</code></li>
<li><code>在crontab中设置脚本自动运行的时间，设置参数见脚本后面。</code></li>
</ol>
<h4></h4>
<h4>脚本文件process.sh：</h4>
<blockquote><p>#!/bin/sh</p>
<p>date &gt;&gt; /srv/http/nginx/mysite/log1.txt<br />
echo &#8220;===========================&#8221;&gt;&gt;/srv/http/nginx/mysite/log1.txt<br />
date &gt;&gt; /srv/http/nginx/mysite/error.txt<br />
echo &#8220;===========================&#8221;&gt;&gt;/srv/http/nginx/mysite/error.txt<br />
#在日志文件中做标识</p>
<p>tar czf /backup/content/$(date +%Y%m%d).tar.gz  /srv/http/nginx/<br />
#压缩网站文件，以日期作为文件名</p>
<p>mysqldump -h 127.0.0.1 -u root -ppassword &#8211;all-databases| gzip &gt; /backup/content/$(date +%Y%m%d).sql.gz<br />
#导出所有数据库，并进行压缩，以日期作为文件名</p>
<p>tar czf /backup/content/$(date +%Y%m%d)_set.tar.gz /etc /root /backup/script<br />
#压缩脚本及配置文件，以“日期_set”为文件名</p>
<p>rm -f /backup/content/$(date +%Y%m%d &#8211;date=&#8217;-350 day&#8217;).sql.gz<br />
rm -f /backup/content/$(date +%Y%m%d &#8211;date=&#8217;-70 day&#8217;).tar.gz<br />
rm -f /backup/content/$(date +%Y%m%d &#8211;date=&#8217;-350 day&#8217;)_set.tar.gz<br />
#删除服务器上的过期备份文件，可根据需要及备份文件大小选择合适的备份数目，因为这里每周备份一次，因些过期天数为7的倍数</p>
<p>s3cmd &#8211;rr put /backup/content/$(date +%Y%m%d).sql.gz s3://buckets/folder/<br />
s3cmd &#8211;rr put /backup/content/$(date +%Y%m%d).tar.gz s3://buckets/folder/<br />
s3cmd &#8211;rr put /backup/content/$(date +%Y%m%d)_set.tar.gz s3://buckets/folder/<br />
#上传备份文件至服务器，其中&#8211;rr参数指定上传后采用<a href="http://aws.amazon.com/s3/faqs/#What_is_RRS" target="_blank">Reduced Redundancy Storage</a>方式存储，注意S3服务器目录后的<strong>/</strong>是一定要的。</p>
<p>s3cmd del S3://buckets/folder/$(date +%Y%m%d &#8211;date=&#8217;-28 day&#8217;).tar.gz<br />
s3cmd del S3://buckets/folder/$(date +%Y%m%d &#8211;date=&#8217;-140 day&#8217;).sql.gz<br />
s3cmd del S3://buckets/folder/$(date +%Y%m%d &#8211;date=&#8217;-140 day&#8217;)_set.tar.gz<br />
#删除S3服务器上的过期备份。</p></blockquote>
<h4></h4>
<h4>设置备份计划</h4>
<p>在shell下输入</p>
<blockquote><p>crontab -e</p></blockquote>
<p>会打开一个文本文件，默认使用vi编辑器，如果很不习惯的话在以上命令之前运行</p>
<blockquote><p>export EDITOR=vim</p></blockquote>
<p>这样就可以使用vim来进行编辑。</p>
<p>然后在打开的文本文件中加入以下一行。</p>
<blockquote><p>30 01 * * 4 /backup/script/process.sh&gt;&gt;/srv/http/nginx/mysite/log.txt 2&gt;&gt;/srv/http/nginx/mysite/error.txt</p></blockquote>
<p>在本例中，设置每周四的1点30分（服务器上的时间）来运行备份脚本，并将运行输出及错误提示输出到日志，方便查阅。</p>
<h4>小结</h4>
<p>这样设置并实施备份计划以后，在服务器及S3服务器上都有了重要文件的备份，还可选择将备份文件下载到本地做一备份，可靠性有了更好的保障。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/07/30 -- <a href="http://www.feng-jun.com/speed-up-wtih-cdn/" title="使用Amazon CloudFront为网站提供CDN加速">使用Amazon CloudFront为网站提供CDN加速</a> (2)</li><li>2010/01/21 -- <a href="http://www.feng-jun.com/prevent-ssh-with-denyhosts/" title="用denyhosts防止暴力破解ssh">用denyhosts防止暴力破解ssh</a> (2)</li><li>2009/12/31 -- <a href="http://www.feng-jun.com/happy-new-year/" title="Happy new year!">Happy new year!</a> (4)</li><li>2009/06/17 -- <a href="http://www.feng-jun.com/wordpress-backup/" title="wordpress的备份方法小结">wordpress的备份方法小结</a> (3)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/backup-server-with-amazon-s3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>天之痕</title>
		<link>http://www.feng-jun.com/tian-zhi-hen/</link>
		<comments>http://www.feng-jun.com/tian-zhi-hen/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 11:16:01 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[game]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/tian-zhi-hen/</guid>
		<description><![CDATA[<a href="http://www.feng-jun.com/tian-zhi-hen/"><img align="right" hspace="5" width="120" src="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh1_thumb.jpg" class="alignright wp-post-image tfe" alt="tzh1" title="tzh1" /></a>多年后重玩《轩辕剑3外传：天之痕》，依然觉得它无论在剧情、音乐、还是画面上，代表了国内单机RPG的顶尖水平。

单机RPG很能体现出民族风格来，就比如说欧洲风靡的龙与地下城类游戏，复杂的规则设定与北欧神话结合，使得游戏有很强的文化特色与可玩性，代表作有《博得之门》系列与《冰风溪谷》系列，但这两个系列的游戏在国内却遭到冷遇，因为规则太过复杂，难过偏高，很多人觉得玩游戏还这么费脑，不如不玩了，这大概也是国人与西方人对于游戏的看法所存在的很大的差别。在魔兽世界中也能看到龙与地下城系列传承下来的很多要素，为这款颠峰级的网游增色不少。

还有款要说的单机RPG就是《Planescape Torment》（异域镇魂曲），有人说如果去一个孤岛而只能玩一款游戏的话，那就是这款了。这款游戏经典在其世界观与哲学思辨上，庞大规模的对话构建了一个完整而另类的世界，而画面在今天看来却是惨不忍睹。这款游戏我只玩了一小部分，但对其印象很深刻。

<span class="readmore"><a href="http://www.feng-jun.com/tian-zhi-hen/" title="天之痕">阅读全文——共743字</a></span>]]></description>
			<content:encoded><![CDATA[<p>多年后重玩《轩辕剑3外传：天之痕》，依然觉得它无论在剧情、音乐、还是画面上，代表了国内单机RPG的顶尖水平。</p>
<p>单机RPG很能体现出民族风格来，就比如说欧洲风靡的龙与地下城类游戏，复杂的规则设定与北欧神话结合，使得游戏有很强的文化特色与可玩性，代表作有《博得之门》系列与《冰风溪谷》系列，但这两个系列的游戏在国内却遭到冷遇，因为规则太过复杂，难过偏高，很多人觉得玩游戏还这么费脑，不如不玩了，这大概也是国人与西方人对于游戏的看法所存在的很大的差别。在魔兽世界中也能看到龙与地下城系列传承下来的很多要素，为这款颠峰级的网游增色不少。</p>
<p>还有款要说的单机RPG就是《Planescape Torment》（异域镇魂曲），有人说如果去一个孤岛而只能玩一款游戏的话，那就是这款了。这款游戏经典在其世界观与哲学思辨上，庞大规模的对话构建了一个完整而另类的世界，而画面在今天看来却是惨不忍睹。这款游戏我只玩了一小部分，但对其印象很深刻。</p>
<p>回到天之痕来，这款游戏带有很浓郁的中华民族特色，剧情中涉及了很多远古的神兽与神器，并与隋唐时期的历史结合了起来。最让我惊异的是在游戏中出现的水墨画，写意风格的绘画将仙境的飘渺与神幻衬托的很到位。</p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh1.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="tzh1" border="0" alt="tzh1" src="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh1_thumb.jpg" width="643" height="484" /></a></p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh2.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="tzh2" border="0" alt="tzh2" src="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh2_thumb.jpg" width="640" height="479" /></a> </p>
</p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh3.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="tzh3" border="0" alt="tzh3" src="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh3_thumb.jpg" width="644" height="484" /></a> </p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh4.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="tzh4" border="0" alt="tzh4" src="http://cdn.feng-jun.com/wp-content/uploads/2010/06/tzh4_thumb.jpg" width="644" height="483" /></a> </p>
<p>如果说想体验国产RPG的最高水准的话，那天之痕与仙剑奇侠传是最佳的选择。后来的RPG很多在刻意地追求3D效果，却从来没有达到较为理想的水准，甚至因3D效果的拙劣而让很多玩家忽略了游戏在其他方面的突破，让这些游戏终于消失在了人们的记忆中，这不得不说是误入歧途，当然这也与国内玩家的喜好及国内游戏的消费环境很有关系。</p>
<p>单机版RPG很有可能己经度过了黄金时期，在网络游戏大行其道的今天，偶而回味下曾经陪伴自己度过很多美好时光的这些游戏，能够发现他们特有的单纯与安静，也是一种不错的享受。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/01/20 -- <a href="http://www.feng-jun.com/plantandzombies1052/" title="植物大战僵尸endless survival模式第1052 flags截图">植物大战僵尸endless survival模式第1052 flags截图</a> (0)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/tian-zhi-hen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>主流远程(离线)下载方式对比</title>
		<link>http://www.feng-jun.com/remote-download-ways/</link>
		<comments>http://www.feng-jun.com/remote-download-ways/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 05:24:26 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[download]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/remote-download-ways/</guid>
		<description><![CDATA[带宽的增长速度远远跟不上下载的需求，而将电脑长时间开着下载也存在着电费噪声等种种问题，于是远程下载的方式应运而生，并渐渐成为下载量较大用户的不错选择。

本文介绍四种主流的远程下载方式，并对其优缺点进行分析对比。

&#160;

<span class="readmore"><a href="http://www.feng-jun.com/remote-download-ways/" title="主流远程(离线)下载方式对比">阅读全文——共1468字</a></span>]]></description>
			<content:encoded><![CDATA[<p> 带宽的增长速度远远跟不上下载的需求，而将电脑长时间开着下载也存在着电费噪声等种种问题，于是远程下载的方式应运而生，并渐渐成为下载量较大用户的不错选择。</p>
<p>本文介绍四种主流的远程下载方式，并对其优缺点进行分析对比。</p>
<h4>&#160;</h4>
<h4>远程控制电脑进行下载</h4>
<p>如果在一个场所有台电脑可以长时间开机并有较大带宽的话，那可以通过远程控制来对该电脑进行控制并下载。</p>
<p>如果被控电脑处于外网，那可以使用windows的远程桌面，如果在内网的话，那可以使用teamviewer。除此之外，还可以使用最新版本迅雷内置的“远程下载(Beta)”功能来进行远程下载控制，不受内网外网的限制。</p>
<h5>优势：</h5>
<p><strong></strong>配置简单，可以充分利用被控主机的大容量内存及硬盘，可选择的下载软件众多。可进行PT(Private Torrents)下载。</p>
<h5>劣势：</h5>
<p>如果被控主机使用的也是小带宽xDSL的话，速度不能保证。噪声，费电，被控主机与主控主机间难以进行高速文件传输。</p>
<p>&#160;</p>
<h4>自建服务器（VPS）来进行下载</h4>
<p>使用vps可以以不贵的价格来获得接近于独立服务器的控制权限，并拥有较大的带宽以及独立IP。</p>
<p>使用vps来进行BT下载可以使用rtorrent，软件为轻量级，并可配合web前端ruTorrent等利用浏览器来对下载进行控制。</p>
<p>电驴下载则可使用edonkey或者mldonkey来进行电驴下载，其中mldonkey自带简单web前端，并可进行BT下载。</p>
<h5>优势：</h5>
<p><strong></strong>可享受服务器较高的带宽并且无内网限制，在配置好后控制便捷；可进行PT下载。</p>
<h5>劣势：</h5>
<p><strong></strong>VPS的价格不便宜。VPS搭建需要一定的基础知识；受版权保护内容下载可能会有国外主机提供商封掉的危险；VPS的内存及硬盘通常很受限制，所能同时进行的任务数及下载文件大小受限制。VPS的流量通常受限，需要时常监测流量避免超限。从服务器下载文件的速度较低。</p>
<p>&#160;</p>
<h4>迅雷离线下载</h4>
<p>迅雷作为长期从事下载软件研发的公司，所推出的离线下载功能虽然还存在种种不足，但功能完善较快，并有不错的发展前途。</p>
<p>离线下载需要购买迅雷的VIP，不打折的话每月10元，下载的文件可存放9天并可续期，下载空间的大小及同时进行下载的任务数需要购买VIP后每天积累成长值来进行升级。另外可以单独购买扩充下载空间大小。</p>
<p>离线下载可进行普通http、BT以及电驴下载。</p>
<h5>优势：</h5>
<p>价格相对vps低廉；可利用迅雷服务器相对较高的带宽以及链接资源；在下载较为冷门的资源时优势明显。</p>
<p><strong>劣势：</strong></p>
<p>下载空间大小及同时进行任务数受限制；功能欠完善，暂停下载及对下载文件进行排序这些功能尚不具备；从迅雷服务器下载到本地速度不稳定；无法支持PT下载，且迅雷客户端不受PT站欢迎；跨平台支持能力不足。</p>
<p>&#160;</p>
<h4>硬盘下载盒或者NAS下载机</h4>
<p>通过在硬盘或者NAS(Network-attached storage)内置入小型的linux操作系统，可在低功耗情况下实现长时间的下载，并可通过本地局域网来实现控制。</p>
<p>具体软件可参照VPS下载部分。</p>
<h5><strong>优势：</strong></h5>
<p>功耗较低；通过外接大容量硬盘可实现大容量的文件下载；控制简便；可进行PT下载；下载后的文件可直接使用，不需要额外的传输。</p>
<h5>劣势：</h5>
<p>价格不低，NAS价格较高；通常这些设备的内存并不很大，因此同时进行的任务数受限制；如果处于内网会受内网限制；</p>
<p>&#160;</p>
<h4>方案对比</h4>
<p>通过以上介绍可看出，各下载方案各有优劣。</p>
<p>对于经常进行下载并有PT需求的用户来说，硬盘下载盒及NAS下载机无疑是最佳选择。</p>
<p>对于普通BT资源及电驴资源下载较多的用户，迅雷离线下载是不错的选择。</p>
<p>VPS服务器下载可作为下载方式的补充。</p>
<p>远程控制电脑进行下载则适合于有这样条件的用户或者临时使用远程主机进行下载的用户。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/01/18 -- <a href="http://www.feng-jun.com/nat-in-virtualbox/" title="virtualbox中NAT连网设置">virtualbox中NAT连网设置</a> (2)</li><li>2009/11/24 -- <a href="http://www.feng-jun.com/km-dokuwiki/" title="个人知识库工具:DokuWiki">个人知识库工具:DokuWiki</a> (15)</li><li>2009/09/14 -- <a href="http://www.feng-jun.com/archlinux-kiss/" title="Archlinux:大道至简">Archlinux:大道至简</a> (2)</li><li>2009/07/18 -- <a href="http://www.feng-jun.com/blue-screen-solution/" title="蓝屏unknow hardward error解决方法">蓝屏unknow hardward error解决方法</a> (6)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/remote-download-ways/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>virtualbox中NAT连网设置</title>
		<link>http://www.feng-jun.com/nat-in-virtualbox/</link>
		<comments>http://www.feng-jun.com/nat-in-virtualbox/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 17:47:00 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[archlinux]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/?p=1735</guid>
		<description><![CDATA[NAT是Virtualbox中最简便的连网方式了，只要从NAT通过DHCP就能自动获取IP、网关以及DNS服务器地址。

但最近帮同学在XP中装了个archlinux虚拟机，装好后能获取IP，也能Ping通网关和宿主机的IP，但就是无法ping通外网的IP。

百思不得其解。

<span class="readmore"><a href="http://www.feng-jun.com/nat-in-virtualbox/" title="virtualbox中NAT连网设置">阅读全文——共225字</a></span>]]></description>
			<content:encoded><![CDATA[<p>NAT是Virtualbox中最简便的连网方式了，只要从NAT通过DHCP就能自动获取IP、网关以及DNS服务器地址。</p>
<p>但最近帮同学在XP中装了个archlinux虚拟机，装好后能获取IP，也能Ping通网关和宿主机的IP，但就是无法ping通外网的IP。</p>
<p>百思不得其解。</p>
<p>后来看文档才明白，在NAT方式下，ping是无效的。</p>
<p>直接设置好mirrorlist，pacman就能跑起来了，真够无语的。</p>
<p>这是思维定势与思维盲点造成的，也有过于依赖经验的因素在里面。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/04/06 -- <a href="http://www.feng-jun.com/remote-download-ways/" title="主流远程(离线)下载方式对比">主流远程(离线)下载方式对比</a> (0)</li><li>2010/01/16 -- <a href="http://www.feng-jun.com/superblock-mount-time-is-in-the-future/" title="Superblock mount time is in the future">Superblock mount time is in the future</a> (0)</li><li>2009/12/20 -- <a href="http://www.feng-jun.com/musca-conky-tint2-2/" title="musca+conky+tint2桌面配置">musca+conky+tint2桌面配置</a> (4)</li><li>2009/11/24 -- <a href="http://www.feng-jun.com/km-dokuwiki/" title="个人知识库工具:DokuWiki">个人知识库工具:DokuWiki</a> (15)</li><li>2009/09/14 -- <a href="http://www.feng-jun.com/archlinux-kiss/" title="Archlinux:大道至简">Archlinux:大道至简</a> (2)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.feng-jun.com" >封 俊</a> : <a class="comment_content" href="http://www.feng-jun.com/nat-in-virtualbox/#comment-2268" title="View the entire comment by 封 俊" >是我没有说清楚，我是在Virturalbox的文档中看到它的NAT网络不支持ping,其他文档的NA...</a></li>
<li><a class="commentor" href="" >xxx</a> : <a class="comment_content" href="http://www.feng-jun.com/nat-in-virtualbox/#comment-2267" title="View the entire comment by xxx" >谁说NAT下，ping就该无效？只是virtualbox没实现而已。</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/nat-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Superblock mount time is in the future</title>
		<link>http://www.feng-jun.com/superblock-mount-time-is-in-the-future/</link>
		<comments>http://www.feng-jun.com/superblock-mount-time-is-in-the-future/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 11:59:59 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[archlinux]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/?p=1733</guid>
		<description><![CDATA[启动时，显示这样的提示：

Superblock mount time is in the future(/dev/sda2)(Last mount 20:35 XX XX 2009, Current time 20:35 XX XX 2009)

然后就进入了init 1模式，输入root密码后可以进入维护模式，此时该分区以只读方式加载。

<span class="readmore"><a href="http://www.feng-jun.com/superblock-mount-time-is-in-the-future/" title="Superblock mount time is in the future">阅读全文——共324字</a></span>]]></description>
			<content:encoded><![CDATA[<p>启动时，显示这样的提示：</p>
<p>Superblock mount time is in the future(/dev/sda2)(Last mount 20:35 XX XX 2009, Current time 20:35 XX XX 2009)</p>
<p>然后就进入了init 1模式，输入root密码后可以进入维护模式，此时该分区以只读方式加载。</p>
<p>尝试更改BIOS内的时间设置，能进入系统，但改回来后依然出现这样的提示。</p>
<p>尝试重新加载分区，但根分区在这个分区上，手头一时又找不到启动盘，还不知道chroot到哪去。</p>
<p>google了一下，解决方法还不少，但就没找到能有效解决的。</p>
<p>还是找到了一个死链，然后点缓存进去看才知道，直接用mount -a命令就可以了，该选项直接重新加载fstab中的分区。</p>
<p>一切OK.</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/01/18 -- <a href="http://www.feng-jun.com/nat-in-virtualbox/" title="virtualbox中NAT连网设置">virtualbox中NAT连网设置</a> (2)</li><li>2009/12/20 -- <a href="http://www.feng-jun.com/musca-conky-tint2-2/" title="musca+conky+tint2桌面配置">musca+conky+tint2桌面配置</a> (4)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/superblock-mount-time-is-in-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>校园网linux下锐捷802.1x客户端的使用</title>
		<link>http://www.feng-jun.com/linux-ruijie/</link>
		<comments>http://www.feng-jun.com/linux-ruijie/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 19:47:54 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/?p=1695</guid>
		<description><![CDATA[宿舍里上网是需要802.1认证的，但学校网站上只提供windows下的客户端，在linux下只能另找。

之前用过nac-0.6.2，配置时碰到过一点麻烦，是DHCP有问题，后来解决了，改了不少地方，但之后用起来并不是很顺畅，启动后要过一会儿才能连接上，大概配置还是有些问题。

然后隔了不少时间，再次将电脑拿到宿舍，archlinux重新装过，因此得要重新设置。但无论怎么设置，nac这个软件始终找不到我的物理网卡，自然也就连不上了，折腾了不少时间，又因为是它软件自身的原因，也不用配置文件，又试了几次，就放弃这个软件了。

<span class="readmore"><a href="http://www.feng-jun.com/linux-ruijie/" title="校园网linux下锐捷802.1x客户端的使用">阅读全文——共722字</a></span>]]></description>
			<content:encoded><![CDATA[<p>宿舍里上网是需要802.1认证的，但学校网站上只提供windows下的客户端，在linux下只能另找。</p>
<p>之前用过nac-0.6.2，配置时碰到过一点麻烦，是DHCP有问题，后来解决了，改了不少地方，但之后用起来并不是很顺畅，启动后要过一会儿才能连接上，大概配置还是有些问题。</p>
<p>然后隔了不少时间，再次将电脑拿到宿舍，archlinux重新装过，因此得要重新设置。但无论怎么设置，nac这个软件始终找不到我的物理网卡，自然也就连不上了，折腾了不少时间，又因为是它软件自身的原因，也不用配置文件，又试了几次，就放弃这个软件了。</p>
<p>后来在网上找到了<a href="http://ruijieclient.googlecode.com/" target="_blank">ruijie client</a>，这软件开源，使用xml格式管理配置文件，做得相当不错，只可惜连上没多久就会断线，我猜大概服务器端还是有加密措施的。找到个救命稻草当然不肯轻易放了，于是在它的配置文件里更改不同的参数，改完重新登陆后，ping douban.com来观察效果，多次尝试，无果。</p>
<p>在google的带邻下找到了存在同样问题的人，在某某高校的论坛，从后面回帖来看，用linux的还不少，多人共同推荐menohust,于是就找到了<a href="http://code.google.com/p/mentohust/" target="_blank">它的主页</a>。作者声称完全兼容锐捷，看到这样的话真让人放心，想都没想就下载源码编译了。</p>
<p>效果相当不错，从程序的输出来看其实服务器还是不断的拒绝我的，但在mentohust的不懈努力下，不断重新认证，ping起豆瓣来还就不会掉包，就是使用时会多占些CPU，风扇间歇性猛转，其他一切OK。</p>
<p>再把archlinux的网络配置贴下来吧，没啥特别的。</p>
<p>eth0=&#8221;dhcp&#8221;<br />
INTERFACES=(eth0)<br />
gateway=&#8221;default gw 58.197.0.1&#8243;<br />
ROUTES=(gateway)</p>
<p>洗洗睡了。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/01/16 -- <a href="http://www.feng-jun.com/linux-10-years/" title="折腾十年linux后的真情告白">折腾十年linux后的真情告白</a> (6)</li><li>2009/12/20 -- <a href="http://www.feng-jun.com/musca-conky-tint2-2/" title="musca+conky+tint2桌面配置">musca+conky+tint2桌面配置</a> (4)</li><li>2009/09/14 -- <a href="http://www.feng-jun.com/archlinux-kiss/" title="Archlinux:大道至简">Archlinux:大道至简</a> (2)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/linux-ruijie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Only heaven knows.</title>
		<link>http://www.feng-jun.com/only-heaven-knows/</link>
		<comments>http://www.feng-jun.com/only-heaven-knows/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 14:50:26 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[思考]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/?p=1660</guid>
		<description><![CDATA[对Emacs有了兴趣，于是在zshrc里写下了alias vim=&#8217;emacs&#8217;。

对python有了兴趣，于是发现没有了windows下的powertoy,还可以开了python后直接print来做计算器；）

这些都不过是工具，但有了好的工具，就能有更多时间来做创造性的劳动，还有更多时间去玩，去享受人生。而不是千百遍的重复同一个动作，或者盯着屏幕寻找按钮选项，或者拿着鼠标一个个链接点下去，点完后大脑一片空白。

<span class="readmore"><a href="http://www.feng-jun.com/only-heaven-knows/" title="Only heaven knows.">阅读全文——共688字</a></span>]]></description>
			<content:encoded><![CDATA[<p>对Emacs有了兴趣，于是在zshrc里写下了alias vim=&#8217;emacs&#8217;。</p>
<p>对python有了兴趣，于是发现没有了windows下的powertoy,还可以开了python后直接print来做计算器；）</p>
<p>这些都不过是工具，但有了好的工具，就能有更多时间来做创造性的劳动，还有更多时间去玩，去享受人生。而不是千百遍的重复同一个动作，或者盯着屏幕寻找按钮选项，或者拿着鼠标一个个链接点下去，点完后大脑一片空白。</p>
<p>这是个没有无谓烦扰的世界，没有QQ不胜其烦的群消息，没有堆成一坨的窗口，连笔记本的风扇，都许久没有呼呼直叫了，因为CPU总是很空闲。</p>
<p><strong>Keep it simple and stupid.</strong></p>
<p>设置nfs总是有问题，所以绕过他，直接vsftp建了个ftp服务器，不同路径，同一目标。</p>
<p>台机的firefox打开人人会有乱码，其他网页没有问题，而笔记本上人人网好好的，那就先用笔记本，其实人人网上不上无所谓。</p>
<p>再不会碰到一个问题就想解决一个问题，这世间问题太多，所以绕过，或者寻找替代，而去解决真正需要自己解决的问题。</p>
<p>Google reader总有看不完的文章，于是看到很好的站点，会选择邮件订阅，不会一篇篇看下来，脑子里塞满了很多没有营养的东西。</p>
<p>开了浏览器就会查邮箱，却很少有极其紧迫的邮件，于是crond里面设好每半个小时收下邮件，闲暇时mutt很快的处理，不会错过也不会一次次检查空的Gmail。</p>
<p>我不是传教士，并非必须告诉你这种种好。</p>
<p>这些你可能很多看不懂，那就给看得懂的人，或者想要懂的人看吧。</p>
<p>所以引用一位远方朋友的博客标题：Only heaven knows.</p>
<p><strong>Only heaven knows.</strong></p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/02/06 -- <a href="http://www.feng-jun.com/life-without-rest/" title="生何所息？生生不息">生何所息？生生不息</a> (0)</li><li>2009/12/31 -- <a href="http://www.feng-jun.com/happy-new-year/" title="Happy new year!">Happy new year!</a> (4)</li><li>2009/11/10 -- <a href="http://www.feng-jun.com/firefox-cookie-bug/" title="Firefox3.5.5不能登录google账号的解决方法">Firefox3.5.5不能登录google账号的解决方法</a> (0)</li><li>2009/09/17 -- <a href="http://www.feng-jun.com/all-about-music/" title="那些听音乐的事">那些听音乐的事</a> (13)</li><li>2009/08/13 -- <a href="http://www.feng-jun.com/talk-about-linux/" title="linux随感">linux随感</a> (6)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/only-heaven-knows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>musca+conky+tint2桌面配置</title>
		<link>http://www.feng-jun.com/musca-conky-tint2-2/</link>
		<comments>http://www.feng-jun.com/musca-conky-tint2-2/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 01:24:48 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[conky]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[musca]]></category>
		<category><![CDATA[profile]]></category>
		<category><![CDATA[soft]]></category>
		<category><![CDATA[tint2]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/?p=1656</guid>
		<description><![CDATA[<a href="http://www.feng-jun.com/musca-conky-tint2-2/"><img align="right" hspace="5" width="120" src="http://cdn.feng-jun.com/wp-content/uploads/2010/01/musca1.thumbnail.jpg" class="alignright wp-post-image tfe" alt="musca1" title="" /></a>这几款软件都是轻量级的组合，配置好后，就是一个手动的瓦片式窗口系统。

之前用的是awesome，用着也不错，不过就是用起GIMP时窗口的排列惨不忍睹。

后来也没怎么打理这些软件，linux用的也不多。

<span class="readmore"><a href="http://www.feng-jun.com/musca-conky-tint2-2/" title="musca+conky+tint2桌面配置">阅读全文——共3434字</a></span>]]></description>
			<content:encoded><![CDATA[<p>这几款软件都是轻量级的组合，配置好后，就是一个手动的瓦片式窗口系统。</p>
<p>之前用的是awesome，用着也不错，不过就是用起GIMP时窗口的排列惨不忍睹。</p>
<p>后来也没怎么打理这些软件，linux用的也不多。</p>
<p>看到网上有musca的介绍，而且看着也像自己想要的，就开始安装配置了。</p>
<p>配置了半天，还算将就着能用了，操作习惯上用了一会也适应了不少，感觉还是挺不错的，如果没有更好的软件出现，那这个组合应该就不会轻易换了。配置后的效果就像下面这样。</p>
<p>各个软件的安装我就不废话了，网上找起来相当很方便。</p>
<p>鉴于我在配置过程中所走的弯路，我把我这几个软件的配置文件内容贴上来，感兴趣的可以参考下。</p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"><a title="musca1" rel="lightbox[pics1656]" href="http://cdn.feng-jun.com/wp-content/uploads/2010/01/musca1.jpg"  rel="lightbox[roadtrip]"><img class="attachment wp-att-1688 centered" src="http://cdn.feng-jun.com/wp-content/uploads/2010/01/musca1.thumbnail.jpg" alt="musca1" width="400" height="249" /></a></p>
<p><strong>.musca_desktop</strong></p>
<blockquote><p>manage off tint2</p>
<p>manage off conky</p>
<p>exec conky</p>
<p>exec tint2</p>
<p>exec feh &#8211;bg-scale ~/files/bg.jpg</p>
<p>set border_focus Orange</p>
<p>set window_open_frame empty</p>
<p>set focus_follow_mouse 1</p>
<p>bind off Mod4+t</p>
<p>bind on Mod4+t exec urxvt</p>
<p>bind on Mod4+q quit</p>
<p>bind on Mod1+j focus down</p>
<p>bind on Mod1+k focus up</p>
<p>bind on Mod1+h focus left</p>
<p>bind on Mod1+l focus right</p>
<p>bind on Mod4+1 use 0</p>
<p>bind on Mod4+2 use 1</p>
<p>bind on Mod4+3 use 2</p>
<p>bind on Mod4+4 use 3</p>
<p>bind on Mod4+5 use 4</p></blockquote>
<p><strong>.conkyrc</strong></p>
<blockquote><p>alignment top_left</p>
<p>background no</p>
<p>use_xft yes</p>
<p>xftalpha 1.0</p>
<p>border_width 1</p>
<p>double_buffer yes</p>
<p>cpu_avg_samples 2</p>
<p>default_color Orange</p>
<p>default_outline_color white</p>
<p>default_shade_color white</p>
<p>draw_borders no</p>
<p>draw_graph_borders yes</p>
<p>draw_outline no</p>
<p>draw_shades no</p>
<p>xftfont Monospace:size=8</p>
<p>gap_x 0</p>
<p>gap_y 0</p>
<p>minimum_size 800 2</p>
<p>own_window_transparent yes</p>
<p>maximum_width 1800</p>
<p>net_avg_samples 2</p>
<p>no_buffers yes</p>
<p>#override_utf8_locale yes</p>
<p>out_to_console no</p>
<p>out_to_stderr no</p>
<p>extra_newline no</p>
<p>own_window yes</p>
<p>own_window_class Conky</p>
<p>own_window_type desktop</p>
<p>stippled_borders 0</p>
<p>update_interval 1.0</p>
<p>uppercase no</p>
<p>use_spacer none</p>
<p>show_graph_scale no</p>
<p>show_graph_range no</p></blockquote>
<p><strong>.tint2rc</strong></p>
<blockquote><p>TEXT</p>
<p>#${color blue }</p>
<p>[$uptime] [$cpu% of $freq MHz] [$mem/$memmax - $memperc%] [$running_processes / $processes processes] [Up: ${upspeed eth0} Down: ${downspeed eth0}] [Disk: $diskio]</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># TINT2 CONFIG FILE</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># BACKGROUND AND BORDER</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>rounded = 7</p>
<p>border_width = 0</p>
<p>background_color = #282828 20</p>
<p>border_color = #ffffff 30</p>
<p>rounded = 5</p>
<p>border_width = 0</p>
<p>background_color = #ffffff 60</p>
<p>border_color = #ffffff 60</p>
<p>rounded = 5</p>
<p>border_width = 0</p>
<p>background_color = #ffffff 30</p>
<p>border_color = #ffffff 30</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># PANEL</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>panel_monitor = all</p>
<p>panel_position = bottom center</p>
<p>panel_size = 100% 20</p>
<p>panel_margin = 0 0</p>
<p>panel_padding = 7 0</p>
<p>font_shadow = 0</p>
<p>panel_background_id = 1</p>
<p>wm_menu = 1</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># TASKBAR</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>taskbar_mode = multi_desktop</p>
<p>#taskbar_mode = single_desktop</p>
<p>taskbar_padding = 2 3 2</p>
<p>taskbar_background_id = 1</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># TASKS</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>task_icon = 0</p>
<p>task_text = 1</p>
<p>task_width = 140</p>
<p>task_centered = 1</p>
<p>task_padding = 6 3</p>
<p>task_font = sans 7</p>
<p>task_font_color = #ffffff 70</p>
<p>task_active_font_color = #ffffff 85</p>
<p>task_background_id = 3</p>
<p>task_active_background_id = 2</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># SYSTRAYBAR</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>systray_padding = 0 4 5</p>
<p>systray_background_id = 0</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># CLOCK</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>time1_format = %H:%M</p>
<p>time1_font = sans 8</p>
<p>time2_format = %A %d %B</p>
<p>time2_font = sans 6</p>
<p>clock_font_color = #ffffff 76</p>
<p>clock_padding = 1 0</p>
<p>clock_background_id = 0</p>
<p>#clock_lclick_command = xclock</p>
<p>clock_rclick_command = orage</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># BATTERY</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>battery = 0</p>
<p>battery_low_status = 10</p>
<p>battery_low_cmd = notify-send &#8220;battery low&#8221;</p>
<p>bat1_font = sans 8</p>
<p>bat2_font = sans 6</p>
<p>battery_font_color = #ffffff 76</p>
<p>battery_padding = 1 0</p>
<p>battery_background_id = 0</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># MOUSE ACTION ON TASK</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>mouse_middle = none</p>
<p>mouse_right = close</p>
<p>mouse_scroll_up = toggle</p>
<p>mouse_scroll_down = iconify</p></blockquote>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=535e6983-5814-889d-ad1e-e37203fd79dc" alt="" /></div>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/01/18 -- <a href="http://www.feng-jun.com/nat-in-virtualbox/" title="virtualbox中NAT连网设置">virtualbox中NAT连网设置</a> (2)</li><li>2010/01/16 -- <a href="http://www.feng-jun.com/superblock-mount-time-is-in-the-future/" title="Superblock mount time is in the future">Superblock mount time is in the future</a> (0)</li><li>2010/01/16 -- <a href="http://www.feng-jun.com/linux-10-years/" title="折腾十年linux后的真情告白">折腾十年linux后的真情告白</a> (6)</li><li>2010/01/07 -- <a href="http://www.feng-jun.com/linux-ruijie/" title="校园网linux下锐捷802.1x客户端的使用">校园网linux下锐捷802.1x客户端的使用</a> (0)</li><li>2009/09/14 -- <a href="http://www.feng-jun.com/archlinux-kiss/" title="Archlinux:大道至简">Archlinux:大道至简</a> (2)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="" >轻风</a> : <a class="comment_content" href="http://www.feng-jun.com/musca-conky-tint2-2/#comment-1971" title="View the entire comment by 轻风" >改天捣鼓捣鼓</a></li>
<li><a class="commentor" href="http://www.feng-jun.com" >coland</a> : <a class="comment_content" href="http://www.feng-jun.com/musca-conky-tint2-2/#comment-945" title="View the entire comment by coland" >@尤Q 
呵呵，学无止境</a></li>
<li><a class="commentor" href="http://www.bjjhyn.net" >流量计</a> : <a class="comment_content" href="http://www.feng-jun.com/musca-conky-tint2-2/#comment-942" title="View the entire comment by 流量计" >写的不错，支持，顶一下</a></li>
<li><a class="commentor" href="http://www.7che8.cn" >尤Q</a> : <a class="comment_content" href="http://www.feng-jun.com/musca-conky-tint2-2/#comment-940" title="View the entire comment by 尤Q" >一头雾水，看来得继续努力学习 了...</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/musca-conky-tint2-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>个人知识库工具:DokuWiki</title>
		<link>http://www.feng-jun.com/km-dokuwiki/</link>
		<comments>http://www.feng-jun.com/km-dokuwiki/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 14:51:26 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[knowledge management]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/km-dokuwiki/</guid>
		<description><![CDATA[在知识的日积月累之后，怎样找到之前看到过的文章，是个问题。

于是想到建立自己的知识库，曾经使用过Evernote, Mybase以及wikidPad，应该说这三种都是非常优秀的笔记软件。

但在使用后就有问题了，Evernote使用特别方便，而且是网络管理，但速度偏慢，而且它摘记的方式更容易使得堆积了大量走马观花看到的知识，缺乏回顾和整理。

<span class="readmore"><a href="http://www.feng-jun.com/km-dokuwiki/" title="个人知识库工具:DokuWiki">阅读全文——共895字</a></span>]]></description>
			<content:encoded><![CDATA[<p>在知识的日积月累之后，怎样找到之前看到过的文章，是个问题。</p>
<p>于是想到建立自己的知识库，曾经使用过Evernote, Mybase以及wikidPad，应该说这三种都是非常优秀的笔记软件。</p>
<p>但在使用后就有问题了，Evernote使用特别方便，而且是网络管理，但速度偏慢，而且它摘记的方式更容易使得堆积了大量走马观花看到的知识，缺乏回顾和整理。</p>
<p>Mybase以及Wikidpad一个是进行树状的组织，一个是网状得组织，软件功能很完备，但是只能进行本地管理，备份以及在不同电脑上进行同步特别不方便。</p>
<p>既然有了虚拟主机，就试试wiki吧。</p>
<p>之前装的是Mediawiki，用过几天之后就没有再用了，因为它是针对大型Wiki系统而设计的，有很多功能个人根本用不到，而对于wiki的管理功能则显得很薄弱，而且它的语法也略为繁琐，因此虽然装了它，但没有记多少东西。</p>
<p>后来在不同的wiki系统中对比后发现了DokuWiki，开始的时候觉得它文本的方式显得落后了，后来才知道文本方式虽然在查找方面比较薄弱，而且碎文件很多，但是文本特别方便迁移（我已经成功的迁移过一次，基本是复制下文件夹就能搞定），而且DokuWiki内置了文本缓冲工具，因此速度上不会有什么问题。</p>
<p>在使用中还发现，Dokuwiki针对的是小型的和个人用户，在权限管理上完全够用，语法简单，提供XML-RPC远程发布接口（虽然我还不知道怎么跟VIM结合），DokuWiki提供了很多实用的插件，有些功能是之前压根没有想到过的，通过插件可以解决Tag，优化排版等关键问题，可以提供跟wordpress,OpenOffice等接口以及文档的输出，提供热键支持，提供反垃圾功能，精选插件的介绍可以看我wiki中摘选的一篇文章《<a href="http://wiki.feng-jun.com/doku.php?id=km:dokuwiki:plugincollection">DokuWiki Plugin 精選</a>》，而且DokuWiki还有本地版本及优盘版本，考虑的还是相当周到的。</p>
<p>总的来说，这款Wiki工具带给了我很好的用户体验，再加上它更新频率很快，第三方插件开发者众多，因此它的发展潜力还是很大的。</p>
<p>如果想要用DokuWiki建自己的Wiki的话可以参考下我的wiki，页面地址是<a href="http://wiki.feng-jun.com">wiki.feng-jun.com</a>。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/04/06 -- <a href="http://www.feng-jun.com/remote-download-ways/" title="主流远程(离线)下载方式对比">主流远程(离线)下载方式对比</a> (0)</li><li>2010/01/18 -- <a href="http://www.feng-jun.com/nat-in-virtualbox/" title="virtualbox中NAT连网设置">virtualbox中NAT连网设置</a> (2)</li><li>2009/09/14 -- <a href="http://www.feng-jun.com/archlinux-kiss/" title="Archlinux:大道至简">Archlinux:大道至简</a> (2)</li><li>2009/07/18 -- <a href="http://www.feng-jun.com/blue-screen-solution/" title="蓝屏unknow hardward error解决方法">蓝屏unknow hardward error解决方法</a> (6)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.feng-jun.com" >封 俊</a> : <a class="comment_content" href="http://www.feng-jun.com/km-dokuwiki/#comment-2040" title="View the entire comment by 封 俊" >VPS上用的是archlinux,之前桌面上用的也是archlinux,现在用Xp了。</a></li>
<li><a class="commentor" href="http://oceanlinux.com" >tw</a> : <a class="comment_content" href="http://www.feng-jun.com/km-dokuwiki/#comment-2039" title="View the entire comment by tw" >考虑过用dokuwiki替代现在的linux博客。对了，你用的是什么版本的Linux？</a></li>
<li><a class="commentor" href="" >jane</a> : <a class="comment_content" href="http://www.feng-jun.com/km-dokuwiki/#comment-1765" title="View the entire comment by jane" >谢谢，部门要建个内部知识库，幸好找到你的知识库，一个很好的参考例子。</a></li>
<li><a class="commentor" href="http://www.feng-jun.com" >封 俊</a> : <a class="comment_content" href="http://www.feng-jun.com/km-dokuwiki/#comment-1740" title="View the entire comment by 封 俊" >@jane 
欢迎常来呵，你说的是左侧导航栏么？是用的indexmenu插件</a></li>
<li><a class="commentor" href="" >jane</a> : <a class="comment_content" href="http://www.feng-jun.com/km-dokuwiki/#comment-1735" title="View the entire comment by jane" >问一下，你知识库左边的那些文件夹list view是怎么弄出来的？</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/km-dokuwiki/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Firefox3.5.5不能登录google账号的解决方法</title>
		<link>http://www.feng-jun.com/firefox-cookie-bug/</link>
		<comments>http://www.feng-jun.com/firefox-cookie-bug/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 07:45:06 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/firefox-cookie-bug/</guid>
		<description><![CDATA[前段时间发现在firefox中google reader不能登录了，在账号登陆界面输入账号密码，确定后页面刷新了一下，还是原来的样子，连错误提示都没有。

但在IE8里可以登录，只是ie8平时不用，用它看google reader效果也不好。

基本确定是cookie的故障，清空cookie，重启firefox，能登陆进去，关闭firefox,再进，又出现同样的故障。

<span class="readmore"><a href="http://www.feng-jun.com/firefox-cookie-bug/" title="Firefox3.5.5不能登录google账号的解决方法">阅读全文——共598字</a></span>]]></description>
			<content:encoded><![CDATA[<p>前段时间发现在firefox中google reader不能登录了，在账号登陆界面输入账号密码，确定后页面刷新了一下，还是原来的样子，连错误提示都没有。</p>
<p>但在IE8里可以登录，只是ie8平时不用，用它看google reader效果也不好。</p>
<p>基本确定是cookie的故障，清空cookie，重启firefox，能登陆进去，关闭firefox,再进，又出现同样的故障。</p>
<p>google帮助没什么作用，没去找firefox的帮助。</p>
<p>重装firefox，因为不想重新配置，所以没有全部清空后安装，只是覆盖安装，故障依旧。</p>
<p>后来连一些论坛也进不了了，登陆后返回页面，页面还是没有登录的状态。</p>
<p>只好在网上找，碰到这个问题的人似乎并不多，但有人解决cookie故障的时候，涉及到了cookies.sqlite这个文件，在everything中定位到了这个文件，在C:\Documents and Settings\Users\Application Data\Mozilla\Firefox\Profiles\uvieb6dl.default目录下，已经有500多k了，关闭firefox并删除这个文件，一切回复正常，初始的cookies.sqlite文件大概只有几K到几十K。</p>
<p>所以即使开源，即使做的很不错了，firefox还是会莫名其妙的犯病的。</p>
<p>PS</p>
<p>刚记起火狐五周年了，作为忠实用户，鸡蛋里挑挑骨头也好，戒骄戒躁，赶掉IE，哈哈！</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2009/12/22 -- <a href="http://www.feng-jun.com/only-heaven-knows/" title="Only heaven knows.">Only heaven knows.</a> (0)</li><li>2009/08/13 -- <a href="http://www.feng-jun.com/talk-about-linux/" title="linux随感">linux随感</a> (6)</li><li>2009/07/28 -- <a href="http://www.feng-jun.com/php-opensorce/" title="14款开源PHP软件推荐">14款开源PHP软件推荐</a> (4)</li><li>2009/05/18 -- <a href="http://www.feng-jun.com/migrate-from-qzone-to-wordpress/" title="成功从QQ空间搬家到wordpress">成功从QQ空间搬家到wordpress</a> (2)</li><li>2009/05/17 -- <a href="http://www.feng-jun.com/ubuntu-style/" title="Ubuntu style">Ubuntu style</a> (0)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/firefox-cookie-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Archlinux:大道至简</title>
		<link>http://www.feng-jun.com/archlinux-kiss/</link>
		<comments>http://www.feng-jun.com/archlinux-kiss/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 16:37:42 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/archlinux%e5%a4%a7%e9%81%93%e8%87%b3%e7%ae%80/</guid>
		<description><![CDATA[<a href="http://www.feng-jun.com/archlinux-kiss/"><img align="right" hspace="5" width="120" src="http://cdn.feng-jun.com/wp-content/uploads/2009/09/archlinuxlogo_thumb.png" class="alignright wp-post-image tfe" alt="arch-linux-logo" title="arch-linux-logo" /></a>这个发行版的linux让我觉得惊艳，因为它简约，初始只安装最基本的软件，需要什么，就加上去。虽然使用门槛比ubuntu等发行版要高，但在配置自己需要系统的同时，可以学到更多的东西，更加感觉到系统的运作是可以由自己控制的。

 

简约安装，先进的包管理，滚动更新，整合的配置文件，详尽的wiki帮助,针对i686处理器进行过优化，这些都是archlinux闪亮的地方。

<span class="readmore"><a href="http://www.feng-jun.com/archlinux-kiss/" title="Archlinux:大道至简">阅读全文——共1483字</a></span>]]></description>
			<content:encoded><![CDATA[<p>这个发行版的linux让我觉得惊艳，因为它简约，初始只安装最基本的软件，需要什么，就加上去。虽然使用门槛比ubuntu等发行版要高，但在配置自己需要系统的同时，<strong>可以学到更多的东西，更加感觉到系统的运作是可以由自己控制的。</strong></p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/09/archlinuxlogo.png"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="arch-linux-logo" border="0" alt="arch-linux-logo" src="http://cdn.feng-jun.com/wp-content/uploads/2009/09/archlinuxlogo_thumb.png" width="244" height="205" /></a> </p>
<p>简约安装，先进的包管理，滚动更新，整合的配置文件，详尽的wiki帮助,针对i686处理器进行过优化，这些都是archlinux闪亮的地方。</p>
<p>当我配置好awesome+slim+dmenu后，系统启动完进桌面后也只有70多M内存，操作便捷，反应飞快。</p>
<p>而之前使用的ubuntu，让我有时有使用windows的感觉，显得臃肿，并且隐藏了很多有必要了解的东西。</p>
<p>在arch wiki上看到一句话这样说的：<strong>把复杂性隐藏起来只会让事物更复杂。</strong>这在我使用windows过程中深有感触，我实验室的台式电脑时VIA芯片组+ATI X300SE显卡的组合，尝试过不同版本的XP系统加不同的驱动和不同的设置，网上能找的方法都试过，依然或者蓝屏或者死机（ati2dvag.dll)，而且问题出现频率不固定，视电脑心情而定。虽然我自认为在电脑上已经有一定的解决问题的经验，但在这个问题上除了换硬件我已束手无策，总不能不用驱动在低分辨率下干活啊。WindowsXP号称已完善的相当成熟了，也是拿ATI最新版（09年8月）的驱动用在了06年的显卡上（支持这款老显卡），但这样显然而严重的问题还是反复出现，不得不对windows系统表示失望。</p>
<p>同样的问题如果出现在linux上，或者会有人开发出能解决这一问题的开源驱动以供选择，或者可以选择只开启基本显示功能的显卡驱动，或者还有可能在下一版的linux内核中针对这一问题有了解决方案，至少不会把问题拖这么长时间却只能指望着厂商的更新。</p>
<p>在我笔记本上也有难以解决的问题，开机变慢了，却不知道慢在哪里，登陆后卡在那里相当长时间，从日志可以分析这个问题吗?哪个进程的问题？这些都无从知道。有时在登录画面还会直接黑屏，屏幕上只有鼠标的光标，鼠标键盘都有响应，但就是没有显示，除了重启别无他法，这样的问题从何下手？我觉得大多数人，哪怕用了windows十多年的人，一时也无从解决。</p>
<p>所以在网上找电脑问题的答案时，很多人都会自以为是的说：<strong>重装系统，能解决所有系统问题。</strong>当然，如果平时只用来上网玩游戏的话ghost一下就ok了，但我的系统装好后配置再加上软件安装就需要大半天甚至一天，无意义的重复劳动让人更容易疲劳，如果是服务器的话，说重装就能重装么？但大家都知道的是，windows只会越用越臃肿，最后你不得不重装。</p>
<p>以上牢骚，是archlinux的铺垫，如果不是对windows的种种不满，不会有对linux以及archlinux的欣赏。ubuntu桌面版做的这么臃肿而绚丽，肯定会有较大用户群但有悖KISS（Keep It Simple and Stupid)原则，国内的雨林木风一味的跟随windows的操作界面实乃无奈之举但没什么出路。在我看来，如果不是非要让linux大众化的话，那linux的发展道路能够清晰很多。</p>
<p>归入正题，archlinux系统配置的改进现在只是抽空搞一下，这次装个音频播放器下次装个解码器这样的，虽然如此，大多数选择的软件在以后都会使用相当长时间，因为这些软件都只实现特定的功能而都能实现的相当不错，就比如说学的vim，可能再过几十年，我还是在用它，用过这软件的人知道，我这么说并不夸张。对于系统也是如此，配置好的linux，备份好配置文件，就可以持续使用很多年而不必去做费力而无意义的学习及适应了。</p>
<p><strong>KISS原则，实在是懒人的原则。</strong></p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/04/06 -- <a href="http://www.feng-jun.com/remote-download-ways/" title="主流远程(离线)下载方式对比">主流远程(离线)下载方式对比</a> (0)</li><li>2010/01/18 -- <a href="http://www.feng-jun.com/nat-in-virtualbox/" title="virtualbox中NAT连网设置">virtualbox中NAT连网设置</a> (2)</li><li>2010/01/16 -- <a href="http://www.feng-jun.com/linux-10-years/" title="折腾十年linux后的真情告白">折腾十年linux后的真情告白</a> (6)</li><li>2010/01/07 -- <a href="http://www.feng-jun.com/linux-ruijie/" title="校园网linux下锐捷802.1x客户端的使用">校园网linux下锐捷802.1x客户端的使用</a> (0)</li><li>2009/12/20 -- <a href="http://www.feng-jun.com/musca-conky-tint2-2/" title="musca+conky+tint2桌面配置">musca+conky+tint2桌面配置</a> (4)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.feng-jun.com" >封俊</a> : <a class="comment_content" href="http://www.feng-jun.com/archlinux-kiss/#comment-413" title="View the entire comment by 封俊" >@Mac 
恩，一个个配下来的确也是花时间精力的，要是用的稳定的话一次配置可以用不少时间，把配置文...</a></li>
<li><a class="commentor" href="http://vifix.cn" >Mac</a> : <a class="comment_content" href="http://www.feng-jun.com/archlinux-kiss/#comment-412" title="View the entire comment by Mac" >赞一下这句：把复杂性隐藏起来只会让事物更复杂。

确实同意Ubuntu Desktop的定位让人...</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/archlinux-kiss/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>linux随感</title>
		<link>http://www.feng-jun.com/talk-about-linux/</link>
		<comments>http://www.feng-jun.com/talk-about-linux/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 13:22:16 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/talk-about-linux/</guid>
		<description><![CDATA[<a href="http://www.feng-jun.com/talk-about-linux/"><img align="right" hspace="5" width="120" src="http://cdn.feng-jun.com/wp-content/uploads/2009/08/linux1_thumb.jpg" class="alignright wp-post-image tfe" alt="linux-1" title="linux-1" /></a>这几天都没有更新日志，因为在家休息，而且没开宽带。

在家主要做了四件事，看父母亲友，学linux，听俞敏洪的演讲，装了台电脑。就说说第二件了。

学linux是一直以来的心愿，以前对它的印象用几个词归纳就是：开放，神秘，强悍，命令符。后来笔记本和台机都分区并装了ubuntu，有时也会用下ssh管理下主机，但只是用用简单的命令，那黑黑的界面深不见底。

<span class="readmore"><a href="http://www.feng-jun.com/talk-about-linux/" title="linux随感">阅读全文——共2376字</a></span>]]></description>
			<content:encoded><![CDATA[<p>这几天都没有更新日志，因为在家休息，而且没开宽带。</p>
<p>在家主要做了四件事，看父母亲友，学linux，听俞敏洪的演讲，装了台电脑。就说说第二件了。</p>
<p>学linux是一直以来的心愿，以前对它的印象用几个词归纳就是：开放，神秘，强悍，命令符。后来笔记本和台机都分区并装了ubuntu，有时也会用下ssh管理下主机，但只是用用简单的命令，那黑黑的界面深不见底。</p>
<p>后来看了王垠的文章，又看到网上有人用linux实现了全键盘的操作，觉得是时候系统的学一下了，既然休息，那就在这段时间学吧。</p>
<p>用得系统是单独安装的ubuntu 9.04以及虚拟机里运行的cent os 5.3,用的书是《鸟哥私房菜》，包括linux基础和linux架站，做成pdf有1700多页，相当值得推荐的适合初学者的好书，阅读时有久已未至的酣畅的阅读体验。读完后，对linux有了算不上深入但较为全面的了解，用来平时的使用以及简单的站点管理应该够了。</p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/08/linux1.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="linux-1" border="0" alt="linux-1" src="http://cdn.feng-jun.com/wp-content/uploads/2009/08/linux1_thumb.jpg" width="244" height="158" /></a> </p>
<p>现在windows和linux都用过了，所以在这说下对于linux的初步的感觉吧。</p>
<p>1.linux是以文本来进行组织的操作系统，比起windows的注册表来说，更加适合人类阅读和配置，而且结合shell script可以很方便的进行程序间的交流和互相操作，这在windows内是几乎难以想象的。虽然配置文件内选项的设置方式还没有统一，但文本形式易于查找、易于编辑、易于阅读，比起windows里程序界面及设置方式的千变万化来说，省去了很多适应界面操作的时间与困扰。</p>
<p>2.linux的软件源管理方式可以使用户免费而方便的获得开源社区的大量最新开源软件，同一发行版内不同软件的验证、下载、安装及卸载的方式都是一样的，比起windows内软件搜索、安装、卸载分而治之的方式要方便很多。但现在linux还是存在rpm,deb等安装包格式不统一的问题。</p>
<p>3.开源社区分散的力量虽然缺乏足够的协调与统一管理，但能为用户提供更贴近实际需求的软件改进，开发者在发现系统漏洞后，就能对其进行及时反应并为用户提供更新。开源方式使得用户甚至可以自己更改源码进行更新或者编译得到适合自己需要的软件。</p>
<p>4.linux的管理很方便，如果结合script那就更加方便了，日志集中在/var/log，配置文件集中在/etc,可执行文件集中在/bin,/sbin,用户目录集中在/home，有比这更简约吗？系统服务及其例行任务都是一个个脚本的显现，有比这更直观方便吗？</p>
<p>5.linux的内核及其文件系统在我看来有先天的优势，尽管我没有深入了解，但文件系统的组织方式、权限管理、日志功能、LVM管理都让我印象深刻，学dos后觉得c,d,e盘符很方便，但在学了分区挂载目录后觉得把硬盘貌似简单的分成cde是在人为得制造混乱。进程调度及内存管理之类的细节我不了解，但linux主机可以做到长时间不需要重启是不争的事实，在windows上却难以达到，我估计是因为windows为了保持向前兼容而导致内核臃肿繁杂的缘故。</p>
<p>6.linux内的很多软件功能单一但强大，而且便于与其他相关软件进行协调。比如vim强大的文本编辑功能就能应用在很多需要文本输入的场合中，相比windows内一个IDE就有一个与众不同的文本编辑器，一个个适应并熟练是件麻烦的事情。</p>
<p>7.linux对于系统配置的要求比起windows来说要低很多，如果不跑桌面的话，很多老爷机都能跑的很欢畅，使得我很想把家里坏掉的赛扬533+128M老爷机换个零件跑跑cent os，比起跑win98要心里舒服多了。网上都有128M甚至96M的linux平台VPS出售呢，而且听说arm9 200MHz加32M内存就能跑个linux+lighttpd，真令人惊叹！</p>
<p>8.但linux对于国内的大多数普通用户来说并不友好，英文阅读障碍首先就限制了很多用户对于linux更多的了解，至少man文档及新装软件的配置文件就难以阅读；黑漆漆的命令提示符让很多人望而生却；而linux的桌面系统（我只用过gnome）的运行效率及其桌面软件的支持又比不上windows；这都让国内的一般用户没有足够的理由选择linux，除非拿正版windows与之对比。</p>
<p>9.windows和linux的网络管理各有风格，linux下通过命令行与配置文件全都可以完成，而在windows下需要cmd命令行、网络连接选项、gpedit.msc、服务设置…… ，这些设置都分散在各个不同的程序中，真像八仙过海，各显神通。</p>
<p>10.不知道windows的服务器架设怎么样，只在很早的时候在自己电脑商架过iis+php的服务器，不过linux服务器架设的方便简易令我印象深刻，但要设置优化好，还是要下功夫搞配置文件的。</p>
<p>11.说这些，不是为了说明谁比谁更好，更没有想说服谁用什么（经验证明这样非但没有效果，而且适得其反），我自己也还在经常的使用linux以及windows.linux的祖先unix起源于学术科研领域，而windows的祖先ms dos起源于想让每家每户都有个人电脑的Bill Gates手中，这决定了这两者在开始时的设计初衷就不一样，从而向两个不同的方向产生了分歧。linux对于科研及互联网发展的贡献有目共睹，而windows对于个人电脑的普及也有相当大的推动作用，但容易用得操作系统并不一定是好系统，我个人眼中，好的操作系统应该在效率、开放性、稳定性、人机界面及其配置自由度这些标准上进行综合评判的，而在这些标准里，linux的很多特性都是走在windows前面的。</p>
<p>12.我觉得linux的发展，从大学及科研教学领域入手更加合适一些，而现在国内的中小学乃至大学，甚至计算机系，linux的使用还是比较少的。linux在上网本上与windows竞争，只有价格及配置要求的优势，凭这些就能赢过微软吗？很难说。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2009/12/22 -- <a href="http://www.feng-jun.com/only-heaven-knows/" title="Only heaven knows.">Only heaven knows.</a> (0)</li><li>2009/11/10 -- <a href="http://www.feng-jun.com/firefox-cookie-bug/" title="Firefox3.5.5不能登录google账号的解决方法">Firefox3.5.5不能登录google账号的解决方法</a> (0)</li><li>2009/07/28 -- <a href="http://www.feng-jun.com/php-opensorce/" title="14款开源PHP软件推荐">14款开源PHP软件推荐</a> (4)</li><li>2009/05/18 -- <a href="http://www.feng-jun.com/migrate-from-qzone-to-wordpress/" title="成功从QQ空间搬家到wordpress">成功从QQ空间搬家到wordpress</a> (2)</li><li>2009/05/17 -- <a href="http://www.feng-jun.com/ubuntu-style/" title="Ubuntu style">Ubuntu style</a> (0)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.feng-jun.com" >封 俊</a> : <a class="comment_content" href="http://www.feng-jun.com/talk-about-linux/#comment-554" title="View the entire comment by 封 俊" >这是windows盗版的功劳，绝大多数人学电脑就是学的windows</a></li>
<li><a class="commentor" href="http://shiyuhang.org/blog/" >时雨</a> : <a class="comment_content" href="http://www.feng-jun.com/talk-about-linux/#comment-551" title="View the entire comment by 时雨" >我是还在用WIN的人
从WIN到Linux最大的阻力是惯性</a></li>
<li><a class="commentor" href="http://www.feng-jun.com" >封俊</a> : <a class="comment_content" href="http://www.feng-jun.com/talk-about-linux/#comment-343" title="View the entire comment by 封俊" >@simple 
呵呵，这个我现在经常混掉的，一些跨平台的软件干脆两者都支持了。
不知道为什么偏...</a></li>
<li><a class="commentor" href="http://www.geekspace.cn" >simple</a> : <a class="comment_content" href="http://www.feng-jun.com/talk-about-linux/#comment-342" title="View the entire comment by simple" >linux与windows还有一个典型区别是：linux目录一般是/home/***,用的是/；而w...</a></li>
<li><a class="commentor" href="http://www.feng-jun.com" >封 俊</a> : <a class="comment_content" href="http://www.feng-jun.com/talk-about-linux/#comment-324" title="View the entire comment by 封 俊" >@Mac 
恩，查了下维基，最初的dos的确是仿照CP/M的。
从dos到windows的一路发...</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/talk-about-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>14款开源PHP软件推荐</title>
		<link>http://www.feng-jun.com/php-opensorce/</link>
		<comments>http://www.feng-jun.com/php-opensorce/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 08:42:19 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/php-opensorce/</guid>
		<description><![CDATA[<a href="http://www.feng-jun.com/php-opensorce/"><img align="right" hspace="5" width="120" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/opensource_logo_thumb.gif" class="alignright wp-post-image tfe" alt="opensource_logo" title="opensource_logo" /></a>在LAMP环境中，除了运行博客程序、CMS以及论坛以外，还是有很多其他类型的优秀开源软件可以使用的。下面就介绍一下我所用过的14款较为不错的php软件。

 

Olate Download

<span class="readmore"><a href="http://www.feng-jun.com/php-opensorce/" title="14款开源PHP软件推荐">阅读全文——共2139字</a></span>]]></description>
			<content:encoded><![CDATA[<p>在LAMP环境中，除了运行博客程序、CMS以及论坛以外，还是有很多其他类型的优秀开源软件可以使用的。下面就介绍一下我所用过的14款较为不错的php软件。</p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/opensource_logo.gif"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="opensource_logo" border="0" alt="opensource_logo" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/opensource_logo_thumb.gif" width="240" height="207" /></a> </p>
<h4><a href="http://www.centrixonline.com/products/od">Olate Download</a></h4>
<p>运行环境：php+MySQL</p>
<p>如果想在自己空间上放一些常用的工具，用来在需要的时候直接从网上下载的话。那么Olate是个不错的选择。</p>
<p>界面很简洁，可以很快找到自己需要的下载链接。如果有更多的用户更多的软件需要管理的话，在后台还有较为完备的分组，搜索，用户分组及权限，镜像服务器，用户协议以及评论管理。</p>
<p>&#160;</p>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp1.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-1" border="0" alt="openphp-1" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp1_thumb.jpg" width="244" height="138" /></a> </p>
<p align="center">&#160;<span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p>&#160;</p>
<h4><a href="http://chyrp.net/">Chyrp</a>     <br /></h4>
<p>运行环境：php+MySQL</p>
<p>一款超轻量级的博客程序，适合用来进行个人记录或者日记，虽然小，但有着较为完善的用户及权限管理，此外还有预发布、trackback、伪静态链接及rss订阅功能，使用Ajax界面，简洁小巧。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp2.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-2" border="0" alt="openphp-2" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp2_thumb.jpg" width="244" height="124" /></a>&#160; <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p align="center"><span style="color: #0080ff; font-size: x-small"><strong></strong></span></p>
<h4><a href="http://www.ajaxplorer.info/">AjaXplorer</a></h4>
<p>运行环境：PHP</p>
<p>一款全部使用Ajax界面的PHP文件管理器，界面很漂亮，支持常用文件管理功能以及文件夹的快捷方式，文件编辑采用Ajax界面的内置文本编辑器。但不支持压缩解压（可能可以通过扩展库来支持），而且开始时程序载入需要一些时间，适合网速较快的情况下使用。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp3.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-3" border="0" alt="openphp-3" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp3_thumb.jpg" width="244" height="125" /></a> <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p>&#160;</p>
<h4><a href="http://phpfm.sourceforge.net">PHP file manager</a></h4>
<p>运行环境：PHP</p>
<p>单文件的文件管理器，界面显得简陋，但功能强大，除了常用文件操作外，支持tar/zip/bzip/gzip文件压缩解压、多文件同时上传、shell管理模式、主机信息查看功能。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp4.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-4" border="0" alt="openphp-4" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp4_thumb.jpg" width="244" height="75" /></a>&#160;<span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p>&#160;</p>
<h4><a href="http://www.net2ftp.com/">Net2ftp</a></h4>
<p>运行环境：PHP</p>
<p>web界面的ftp客户端，可以再浏览器内使用该软件进行ftp操作，支持常用文件操作，文件压缩解压，而且可以支持两个ftp服务器之间的操作，是用来进行主机间文件迁移的不错工具，但在使用过程中时常不稳定。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp5.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-5" border="0" alt="openphp-5" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp5_thumb.jpg" width="244" height="112" /></a>&#160; <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p>&#160;</p>
<h4><a href="http://laconi.ca/">Laconica</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>仿twitter的微博客程序，与twitter的API兼容，并可以java script方式加入wordpress作为widgets调用，但本身的API还未开放，只能通过API调用<a title="http://laconi.ca" href="http://laconi.ca">http://laconi.ca</a>上所发的消息。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp6.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-6" border="0" alt="openphp-6" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp6_thumb.jpg" width="244" height="133" /></a><span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span> </p>
<h4><a href="http://www.phpmybackuppro.net/">Php My BackupPro</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>文件及数据库备份软件，可定时进行备份，备份的数据库可存在所在主机，也可发送email到指定邮箱、下载到本地或者上传到指定的ftp；可以指定备份哪些文件，并可将备份的文件下载、存在所在所在主机或者通过ftp方式自动上传到指定ftp服务器。可以指定备份的频率，通过运行自动生成的php程序来运行备份，但由于php的运行时间受到限制，因此可以备份的文件大小受限。软件内置备份管理及恢复系统，并可指定所存的备份数目及备份目录的容量限制。</p>
<p>总得来说，这是款功能较为完善的备份软件，推荐使用。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp7.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-7" border="0" alt="openphp-7" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp7_thumb.jpg" width="244" height="137" /></a> <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p>&#160;</p>
<h4><a href="http://www.phpmyvisites.us/">phpMyvisites</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>功能较为完善的统计系统，界面简洁高效，并可通过rss订阅统计信息，可手动生成pdf的统计报表，包含了统计系统所应具备的大多数功能，但在ip显示及地理位置显示上不算详尽。该软件现已终止开发，其后续版本是ajax界面的<a href="http://piwik.org/">Piwik</a>，宣称挑战Google Analytics，但Piwik用起来界面没有PhpMyvisites简洁高效，因此还是使用后者的。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp8.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-8" border="0" alt="openphp-8" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp8_thumb.jpg" width="244" height="145" /></a> <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<h4><a href="http://yourls.org/">YOURLS</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>好用的自定义短链接生成软件，可以使用自己的域名生成可定制的短链接，可以选择提供开放服务或者私自使用，可以跟踪链接的点击次数，使用Ajax界面，开放API。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp9.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-9" border="0" alt="openphp-9" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp9_thumb.jpg" width="244" height="74" /></a> <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<h4><a href="http://wikimedia.org/">Wikimedia</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>这款软件应该很多人都知道，大名鼎鼎的wikipedia就是使用该系统搭建的。软件功能强大，有多种插件支持，但在管理功能上稍显繁琐。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp10.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="openphp-10" border="0" alt="openphp-10" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp10_thumb.jpg" width="244" height="107" /></a> <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p>&#160;</p>
<h4><a href="http://www.zenphoto.org/">Zenphoto</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>一款照片管理工具，支持照片上传，下载，评论以及管理，支持主题更换，标签管理，缩略图管理，查看次数记录，并且有多种插件可供选择。可以在wordpress中增加插件以在日志中引用该相册中的照片。界面简洁。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp11.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-11" border="0" alt="openphp-11" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp11_thumb.jpg" width="244" height="113" /></a><span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span> </p>
<h4><a href="http://www.phpace.com/php-image-host/">PHP Image Host</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>使用该软件可以架设自己的图片外链服务器，本身内置收费管理功能，并可单独设定收费版与免费版的使用权限及功能，可支持图片缩略图管理、压缩包上传、多文件同时上传。功能完善。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp12.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-12" border="0" alt="openphp-12" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp12_thumb.jpg" width="244" height="195" /></a> <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span> </p>
<p>&#160;</p>
<h4><a href="http://www.phome.net/download/">帝国备份王2008开源版</a></h4>
<p>运行环境：PHP+MySQL</p>
<p>该软件在<a href="http://www.feng-jun.com/wordpress-backup/">《wordpress备份方法小结》</a>中有所介绍，数据库备份软件。对于大数据库以及不同版本的数据库兼容性比较好，可以实现平滑的过渡（官方介绍，没有尝试）。</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://cdn.feng-jun.com/wp-content/uploads/mypic/wordpress-backup-4.jpg"  width="101" height="240" / rel="lightbox[roadtrip]"> </p>
<p align="center"><span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span> </p>
<h4><a href="http://siege.org/projects/phpMyID/">PHP MyID</a></h4>
<p>运行环境：PHP</p>
<p>架设自己的openid服务器软件，功能简单，设置时可能略为繁琐。</p>
<p align="center"><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp13.jpg"  rel="lightbox" rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="openphp-13" border="0" alt="openphp-13" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/openphp13_thumb.jpg" width="244" height="55" /></a> <span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span> </p>
<h4>结语：</h4>
<p align="left"><font color="#400040">由于很多主机只有有限个MySQL数据库，因此尝试的这些软件最好与主博客的数据库分开，并且设置特定的数据库表前缀。在安装以前最好能对数据库做一个备份。如果以后不需要这些软件的话，可以根据表的前缀使用DROP TABLE命令来删除表，并删除程序文件以进行卸载。</font></p>
<p align="left"><font color="#0080ff">本日志会根据以后的php程序使用情况持续更新或者补充后续日志。</font></p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2009/12/22 -- <a href="http://www.feng-jun.com/only-heaven-knows/" title="Only heaven knows.">Only heaven knows.</a> (0)</li><li>2009/11/10 -- <a href="http://www.feng-jun.com/firefox-cookie-bug/" title="Firefox3.5.5不能登录google账号的解决方法">Firefox3.5.5不能登录google账号的解决方法</a> (0)</li><li>2009/08/13 -- <a href="http://www.feng-jun.com/talk-about-linux/" title="linux随感">linux随感</a> (6)</li><li>2009/05/18 -- <a href="http://www.feng-jun.com/migrate-from-qzone-to-wordpress/" title="成功从QQ空间搬家到wordpress">成功从QQ空间搬家到wordpress</a> (2)</li><li>2009/05/17 -- <a href="http://www.feng-jun.com/ubuntu-style/" title="Ubuntu style">Ubuntu style</a> (0)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.feng-jun.com" >封俊</a> : <a class="comment_content" href="http://www.feng-jun.com/php-opensorce/#comment-316" title="View the entire comment by 封俊" >@joojen  
需要的时候再用啊，不需要的时候知道有这么个东西就可以了。</a></li>
<li><a class="commentor" href="http://www.keege.com" >joojen</a> : <a class="comment_content" href="http://www.feng-jun.com/php-opensorce/#comment-313" title="View the entire comment by joojen" >一个都没用过，差距呀。</a></li>
<li><a class="commentor" href="http://www.feng-jun.com" >封俊</a> : <a class="comment_content" href="http://www.feng-jun.com/php-opensorce/#comment-294" title="View the entire comment by 封俊" >@Kevin 
是的，简单方便呵。</a></li>
<li><a class="commentor" href="http://idea1983.com" >Kevin</a> : <a class="comment_content" href="http://www.feng-jun.com/php-opensorce/#comment-292" title="View the entire comment by Kevin" >Chyrp 这款好像不错哦，给女朋友写写日记什么的。哈！</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/php-opensorce/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>蓝屏unknow hardward error解决方法</title>
		<link>http://www.feng-jun.com/blue-screen-solution/</link>
		<comments>http://www.feng-jun.com/blue-screen-solution/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 11:31:06 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/blue-screen-solution/</guid>
		<description><![CDATA[<a href="http://www.feng-jun.com/blue-screen-solution/"><img align="right" hspace="5" width="120" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/bluescreeen_thumb.jpg" class="alignright wp-post-image tfe" alt="blue-screeen" title="blue-screeen" /></a>早上起来打开笔记本，进入windows，还没进桌面，就出现了如下的蓝屏提示：



&#160;

<span class="readmore"><a href="http://www.feng-jun.com/blue-screen-solution/" title="蓝屏unknow hardward error解决方法">阅读全文——共618字</a></span>]]></description>
			<content:encoded><![CDATA[<p>早上起来打开笔记本，进入windows，还没进桌面，就出现了如下的蓝屏提示：<br />
<blockquote>
<p>&#160;</p>
<p>stop:c0000218 unknown hard error </p>
<p>beginning dump of phycical memory </p>
<p>phycical memory complete. </p>
<p>contact your administrator or technical support group for further assitance. </p>
</blockquote>
<p><a href="http://cdn.feng-jun.com/wp-content/uploads/2009/07/bluescreeen.jpg"  rel="lightbox[roadtrip]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="blue-screeen" border="0" alt="blue-screeen" src="http://cdn.feng-jun.com/wp-content/uploads/2009/07/bluescreeen_thumb.jpg" width="244" height="169" /></a> </p>
<p align="center">&#160;<font color="#0080ff">Bill的蓝屏，Bill的骄傲</font></p>
<p align="center"><span style="color: #0080ff; font-size: x-small"><strong>点击图片看大图</strong></span></p>
<p><strong>这样的提示除了可以用来google以外，别无用处。</strong></p>
<p>在grub里选择Ubuntu可以进入，说明硬件基本没有问题。</p>
<p>安全模式出现同样的提示，使用“上次正常启动的配置”，错误依旧。</p>
<p>用手机查找解决方案，百度知道上一群家伙把重装系统和换硬件当成了解决电脑问题的法宝。</p>
<p>可是我用grub引导的，重装xp会把mbr给覆盖，手中又没有ubuntu的live CD，不方便恢复，而且，重装那么多软件，费时费力无意义。</p>
<p>最后还是查到有人回答了，而且给了微软的技术支持文档链接。说出现这样的问题是因为非正常关机或其他原因导致注册表读写错误。</p>
<p><strong>解决方法是：用xp的安装光盘启动，进入故障恢复台，用管理员密码登陆后，输入chkdsk /r进行磁盘错误的扫描与修复。</strong></p>
<p>经过一轮一二十分钟的扫描后，提示修复了至少一个以上的错误。</p>
<p>重启，系统恢复正常，登陆后出现对话框，提示注册表已经从错误中恢复。</p>
<p><strong>问题启示：下次出现类似问题还是直接问微软吧。百度知道越来越缺乏价值了。</strong></p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2010/04/06 -- <a href="http://www.feng-jun.com/remote-download-ways/" title="主流远程(离线)下载方式对比">主流远程(离线)下载方式对比</a> (0)</li><li>2010/01/18 -- <a href="http://www.feng-jun.com/nat-in-virtualbox/" title="virtualbox中NAT连网设置">virtualbox中NAT连网设置</a> (2)</li><li>2009/11/24 -- <a href="http://www.feng-jun.com/km-dokuwiki/" title="个人知识库工具:DokuWiki">个人知识库工具:DokuWiki</a> (15)</li><li>2009/09/14 -- <a href="http://www.feng-jun.com/archlinux-kiss/" title="Archlinux:大道至简">Archlinux:大道至简</a> (2)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.feng-jun.com" >封俊</a> : <a class="comment_content" href="http://www.feng-jun.com/blue-screen-solution/#comment-282" title="View the entire comment by 封俊" >@仁心博客 
呵呵，过奖。</a></li>
<li><a class="commentor" href="http://www.9sh.net" >仁心博客</a> : <a class="comment_content" href="http://www.feng-jun.com/blue-screen-solution/#comment-281" title="View the entire comment by 仁心博客" >你挺细心的</a></li>
<li><a class="commentor" href="http://www.feng-jun.com" >封 俊</a> : <a class="comment_content" href="http://www.feng-jun.com/blue-screen-solution/#comment-277" title="View the entire comment by 封 俊" >@Mac 
也算不上信赖吧，正是因为觉得不稳定，所以觉得chkdsk一下好不了多少，就有些懒得打理...</a></li>
<li><a class="commentor" href="http://vifix.cn" >Mac</a> : <a class="comment_content" href="http://www.feng-jun.com/blue-screen-solution/#comment-275" title="View the entire comment by Mac" >@封俊 

曾经我也很信赖NTFS的可靠性，但是自从一次Windows 2000非正常关机然后开...</a></li>
<li><a class="commentor" href="http://www.feng-jun.com" >封俊</a> : <a class="comment_content" href="http://www.feng-jun.com/blue-screen-solution/#comment-274" title="View the entire comment by 封俊" >@Mac 
你可真细致，我非正常关机的磁盘扫描都被我关了。
windows从我这普通使用者角度来...</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/blue-screen-solution/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Ubuntu style</title>
		<link>http://www.feng-jun.com/ubuntu-style/</link>
		<comments>http://www.feng-jun.com/ubuntu-style/#comments</comments>
		<pubDate>Sun, 17 May 2009 05:21:42 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/?p=84</guid>
		<description><![CDATA[喜欢上了Ubuntu。

ati2dvag蓝屏让我对ms和ati着实佩服，一个让众多用户垢病的bug竟然三年多了都还没官方回应。折腾许久，依然频繁的蓝屏，后来忽然想到，我师兄电脑与我一样，但从来不蓝屏。

原来他用的是随电脑的xp home版，没有sp，不更新，不升级驱动。让我感叹之余，立即格掉了xp的sp3，装sp2，老老实实的用随机驱动。

<span class="readmore"><a href="http://www.feng-jun.com/ubuntu-style/" title="Ubuntu style">阅读全文——共815字</a></span>]]></description>
			<content:encoded><![CDATA[<p>喜欢上了Ubuntu。</p>
<p>ati2dvag蓝屏让我对ms和ati着实佩服，一个让众多用户垢病的bug竟然三年多了都还没官方回应。折腾许久，依然频繁的蓝屏，后来忽然想到，我师兄电脑与我一样，但从来不蓝屏。</p>
<p>原来他用的是随电脑的xp home版，没有sp，不更新，不升级驱动。让我感叹之余，立即格掉了xp的sp3，装sp2，老老实实的用随机驱动。</p>
<p>还是会蓝屏。</p>
<p>我再把硬件加速全关了。</p>
<p>终于清静了，再没蓝屏。</p>
<p>所以，我对XP就快无语了，完善了八年多的系统，不过如此。</p>
<p>于是瞄上了刚收到的ubuntu9.04，笔记本和台机都整了十几G的空间，装吧。</p>
<p>装的相当顺利，更新时还有4,5MB的速度，驱动貌似也都认出来了。</p>
<p>后来装了一些软件，又是因为ati的驱动问题，进不去系统，就重装了。其他就没出现啥问题了。</p>
<p>ubuntu的厉害之处，一在于它强悍的命令提示符，另一个就在于众多的来源软件了。不足之处，就我的体验来说，首先是它不容易入门，要让一般用户啃英文文档配置软件还是比较难的。另外是对多媒体的支持并不算很好，我播放的音乐都是ape+cue，而且需要管理一个较大的音乐库，windows下面有foobar可以胜任，但linux下面原生支持ape的很少，更不用提cue和大音乐库的管理了，总不能让我把几百g的音乐都转成flac吧。所以现在进utubun就不怎么听音乐了。</p>
<p>其他都还挺好的，现在那些专业软件还不容易找到linux版的，所以干活还要进windows。不干活时，ubuntu基本都能满足我的应用需求，而且无毒无流氓软件不死机不蓝屏，还有3D桌面和无数免费软件，要不是干活，懒的重启进windows了。</p>
<p>后来还转了ext4文件系统，的确快了，有时还没反应过来就启动完了，没有产生其他的问题。</p>
<p>有时会跟其他人说某样东西的好，比如说ubuntu，但应者寥寥。很多人只是因为习惯原有的事物所以才会坚持不改变的。所以好东西未必就受欢迎，但另一方面，东西好了，谁用谁知道。</p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2009/12/22 -- <a href="http://www.feng-jun.com/only-heaven-knows/" title="Only heaven knows.">Only heaven knows.</a> (0)</li><li>2009/11/10 -- <a href="http://www.feng-jun.com/firefox-cookie-bug/" title="Firefox3.5.5不能登录google账号的解决方法">Firefox3.5.5不能登录google账号的解决方法</a> (0)</li><li>2009/08/13 -- <a href="http://www.feng-jun.com/talk-about-linux/" title="linux随感">linux随感</a> (6)</li><li>2009/07/28 -- <a href="http://www.feng-jun.com/php-opensorce/" title="14款开源PHP软件推荐">14款开源PHP软件推荐</a> (4)</li><li>2009/05/18 -- <a href="http://www.feng-jun.com/migrate-from-qzone-to-wordpress/" title="成功从QQ空间搬家到wordpress">成功从QQ空间搬家到wordpress</a> (2)</li></ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/ubuntu-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>软件记</title>
		<link>http://www.feng-jun.com/about-software/</link>
		<comments>http://www.feng-jun.com/about-software/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 07:23:44 +0000</pubDate>
		<dc:creator>封 俊</dc:creator>
				<category><![CDATA[软件]]></category>

		<guid isPermaLink="false">http://www.feng-jun.com/archives/290</guid>
		<description><![CDATA[<a href="http://www.feng-jun.com/about-software/"><img align="right" hspace="5" width="120" src="http://cdn.feng-jun.com/wp-content/uploads/2009/04/software.jpg" class="alignright wp-post-image tfe" alt="software" title="software" /></a>前几天因为升级EDA软件，也因为实在忍受不了千疮百孔的系统了，于是笔记本和实验室的台机都重装了系统。不少软件用下来一直感觉很不错，趁着重装正好归纳下，有好软件可以大家分享。

操作系统

没什么好说的，下了个番茄花园的XP sp3，后来听Jack说番茄花园的很烂，深度的才是技术流等等。其实对于一般人来说差别几乎感觉不到，可惜以后不大会有人搞这盗版改装了，于人方便，于己也有利。

<span class="readmore"><a href="http://www.feng-jun.com/about-software/" title="软件记">阅读全文——共3667字</a></span>]]></description>
			<content:encoded><![CDATA[<p>前几天因为升级EDA软件，也因为实在忍受不了千疮百孔的系统了，于是笔记本和实验室的台机都重装了系统。不少软件用下来一直感觉很不错，趁着重装正好归纳下，有好软件可以大家分享。</p>
<p><strong>操作系统</strong><br />
没什么好说的，下了个番茄花园的XP sp3，后来听Jack说番茄花园的很烂，深度的才是技术流等等。其实对于一般人来说差别几乎感觉不到，可惜以后不大会有人搞这盗版改装了，于人方便，于己也有利。</p>
<p><strong>浏览器</strong><br />
在中国使用IE6是最保险的，几乎没有网页不支持IE6,不过据网页开发行业的人说IE6是网站开发的噩梦。<br />
系统装完了就升级到了IE8，浏览速度还是蛮可以的。不过IE8大多也只是用来开开网银之类的。平时基本都用firefox。<br />
网上很多人说firefox功能不如遨游、世界之窗等浏览器，要是用firefox有段时间后会发现这样的说法简直在开玩笑。<br />
简单的说，绝大多数人能想到的还有很多没想到的功能firefox都有，只是大多数人没想过动手去配置插件。<br />
以后有机会会介绍一下我所用的插件。<br />
当然功能强大有时也要付出代价的，比如说firefox占用内存还是相对比较多，不过现在大多电脑内存都比较大，影响不是很大。</p>
<p><strong>桌面美化软件 Vista Anthracite Pack</strong><br />
这个软件用的人大概挺少的，不过看惯了它改装后的界面就不怎么想改了。既没有驻留内存的程序，也没有怎么花哨累赘的附庸。只是觉得XP默认的绿绿的界面看多了腻的很，还是黑色的耐看一些。后面有个桌面的截图，可以参考下。</p>
<p><strong>杀毒软件 nod32</strong><br />
这款软件的实力不容小觑，网上查一下就知道了，至少比X星，X霸要高那么几个层次。<br />
还有个重要的优点，占用内存特别少，基本不会因为这款软件而让机器卡。<br />
还有优点就是不会像卡巴那样时不时猪叫一样吓人，升级用户名和密码也很容易取得。</p>
<p><strong>程序快捷运行 Launchy</strong><br />
在我重装系统之前，我的开始菜单的程序项展开是能铺满屏幕的。要每次都要盯着找，是能练出火眼金睛的。<br />
装了Launchy之后，基本就不用开始菜单，也不用桌面图标来打开程序了。Shift+空格后，屏幕上就会出现一个输入框，输入程序名称的一部分，就可以打开程序了。Shift+空格 输qq就QQ，输foo就foobar，多省事。</p>
<p><strong>快捷键设置软件HotkeyP</strong><br />
除了Launchy外，特别经常使用的软件是被我设置了快捷键的，Total Commander被我设置了win+E，Firefox被我设置了win+W，打开这两个程序非常方便。<br />
这款软件与众多快捷键软件很大的不同的是可以覆盖掉系统里原有的快捷键，比如Win+E默认打开的就是资源管理器。</p>
<p><strong>文件管理软件Total Commander</strong><br />
用鼠标一层一层的寻找文件再进行操作实在是费时又费力的事情，用Total Commander之后，就可以淘汰“我的电脑”和资源管理器了，而且它还整合了ftp软件，图片浏览软件，编辑器等等，当然，开始时还要适应下它的全键盘操作的。</p>
<p><strong>文件搜索软件 Everything</strong><br />
这款软件搜索硬盘里的文件的速度简直很变态，原因是它直接是对文件分配表进行索引的，用它搜索我的大硬盘再合适不过。</p>
<p><strong>字体 微软雅黑</strong><br />
与苹果系统及Linux相比，XP默认的宋体还是比较丑的，后来微软为Vista及后来的操作系统开发了雅黑字体，据说每个字开发费用都有好几个美金。<br />
这款字体通过补丁也可以在XP上使用，要提高显示效果还需要打开Clear Type，一般网上下的补丁都整合了Clear Type调整工具。</p>
<p><strong>文件解锁定软件 unlocker</strong><br />
时常有文件因为被其他软件锁定而无法删除更改，这款软件就是针对这项应用而开发的，能设置在解锁后执行什么样的操作。精炼而完整。</p>
<p><strong>多桌面软件Virtual Win</strong><br />
平时时常会将窗口开到20个以上，窗口的管理是个问题。如果有多个桌面可以将不同类别的窗口放到不同的桌面，显然可以整洁很多而且提高效率。<br />
我这里设置了八个桌面，通常是一个桌面代码，三个桌面分别放三种EDA软件，一个桌面是文档，还有个桌面是浏览器，用Alt+数字键切换不同的桌面，很方便。<br />
微软也出了一款多桌面软件，不过没用过，功能应该是类似的。<br />
<strong><br />
桌面图标管理软件 Fences</strong><br />
桌面图标凌乱的话看起来很不舒服，而且影响效率，这个软件就是分类整理桌面图标用的，而且界面很简洁明了。效果见后面截图。</p>
<p><strong>资料整理软件 WikidPad</strong><br />
用过MyBase但觉得树状管理比较局限而且略显死板。用过evernote觉得速度太慢，其他方面都很好，还用过其他一些杂牌的资料整理软件，但不足的地方更多。<br />
WikidPad是款利用Wiki格式撰写文档的资料整理收集软件，不仅可以利用树状来归类资料，还可以利用标签，属性等功能来使文档交错联系起来，这方面介绍还可以网上查一下。<br />
当然这软件还可以优化，比如网络存储，增强稳定性等，至少再以后相当时间里，就用它了。</p>
<p><strong>文本编辑器 Gvim</strong><br />
这个界面比较古老的编辑器有着极为强悍的功能。<br />
要是你平时写代码文档比较多，又觉得没必要改进文档编辑器的话，你可以统计下平时在编辑文档时，有多少重复而累赘的操作，更不用提用着鼠标在大分辨率的显示器上艰难的定位了。<br />
好的文本编辑器能显著提高效率，而且不夸张的说，学好了受益一辈子。<br />
当然，这么好的编辑器不是那么好学的，学习曲线比较陡峭，而且据说在学会25种常用操作前，是不会显著提高效率的。我现在用的还不熟练，但略略领会到神奇之处了。<br />
好玩的事，在我一阵键盘猛按继而发现按错了后，vim幽幽地提示着说：Don’t Panic。</p>
<p><strong>音乐播放器Foobar 2000</strong><br />
这款播放器初看来可能会觉得界面有些简陋，但那是因为去掉了很多不必要的累赘。<br />
如果你想让它漂亮一些的话，只要你肯动手，会比任何一款音乐播放器都漂亮。<br />
不过对于大多数人来说，音乐播放时，播放器的界面就最小化或者背后去了，不是么？<br />
这款播放器的扩展性是超级强的，而且有些功能我尚且还没有发现哪款软件可以替代，就比如说它的媒体库搜索插件，我可以根据音乐家或者专辑曲目等关键词用两三秒就可以在几百G的音乐里找出我想要的，更何况我的音乐还都是无损的，比MP3更不好处理。如果有哪位找到更好的替代，别忘了告诉我。<br />
还有就是foobar的全局快捷键支持的很好，我现在用Alt键再配合数字小键盘不用进foobarj就能进行曲目音量等操作了。要想调出foobar界面，也是快捷键。<br />
其他的一些优秀扩展我也是刚接触，后面截图右下角是foobar的浮动窗口提示框，平时半透明，鼠标移上去就不透明了。<br />
<strong><br />
联机键鼠控制软件Synergy</strong><br />
描述这样的软件几个字不容易，不过要描述简单也不难，就是让你可以用一套键盘鼠标来控制联网的两台或者多台电脑。你可能桌面上不止一台电脑，那就需要把手从这个键盘这个鼠标挪到那个键盘鼠标，然后再挪来挪去的，很麻烦，而且很容易就手忙脚乱的。那用了这个软件之后，你的鼠标从这台电脑的屏幕可以穿到那台电脑的屏幕，穿过去后，键盘的输入也<br />
会输入到那台电脑上，你只需要简单的把视线在不同屏幕间转来转去就可以了。设置简单，而且跨平台，是不可多得的好软件。</p>
<p><strong>补充：</strong><br />
这些软件都是我平时很经常用的，经得住时间的考验。没有贴链接是因为链接容易失效，而且这些软件在网上很容易找到。下最新版的就可以了。</p>
<p>你可能会说，这么多软件，是非常占内存的，其实我试过，这上面软件除了Firefox之外，即使全开，加上操作系统一共也不过占300MB多一点的内存，当然平时全开的机会还是不多的。</p>
<p>你可能还会觉得学习那么多软件的操作，费时费力。其实软件的使用更多的是习惯的问题，用几遍就习惯了。有很多软件设计时更多考虑的是怎么容易使用，却没有考虑操作效率的问题，当然如果只是偶尔使用这些软件或者偶尔使用电脑的话，那么无所谓了，但如果经常使用的话，那效率的提高会节省很多的时间精力，可以投入更多的时间在真正需要创造力的事情上面。另外要补充的是，键盘操作通常能比鼠标操作提高几倍的效率，极端情况下几十倍上百倍是很有可能的。</p>
<p>还有一些软件也很优秀，但因为用的时间不长用的次数不多而且不是非常出众，就放到后面集中的列一下好了。<br />
<strong>Revo uninstaller</strong> 是一款卸载其他软件的软件，能在软件卸载后扫描软件在系统中的残留，主要是注册表和文件夹，这样卸的比较干净。<br />
<strong>Windirstat</strong> 文件及文件夹大小统计工具，可以以很直观的方式统计你磁盘里哪些文件夹占用多少空间，要是你觉得你的硬盘空间越来越少却不知道用在哪里的话，那这款软件就很适合你。<br />
<strong>Kmplayer </strong>视频播放器，界面简洁，重要的是支持的格式非常多，基本装一个这样的软件就不需要其他的播放器了，而且功能很丰富。网上也有改装打包后的版本，比如终极解码，完美解码等等，这些针对播放高清视频做了很好的优化，即使机器性能不高也能比较流畅的播放。用过这款软件之后对于其他人为何坚守暴风影音充满了不解。<br />
<strong>uTorrent</strong> 这款BT软件占用资源很少，也是被很多PT(Private Torrent)站点首要推荐的下载软件。如果BT下的比较多的话，可以考虑就选它了。</p>
<p>这些软件，不少都是从善用佳软上听说的，一个很不错的网站。</p>
<p><img class="alignnone size-full wp-image-402" title="software" src="http://cdn.feng-jun.com/wp-content/uploads/2009/04/software.jpg" alt="software" width="600" height="375" /></p>
<h4  class="related_post_title">你可能还喜欢如下文章</h4><ul class="related_post"><li>2009/12/22 -- <a href="http://www.feng-jun.com/only-heaven-knows/" title="Only heaven knows.">Only heaven knows.</a> (0)</li><li>2009/11/10 -- <a href="http://www.feng-jun.com/firefox-cookie-bug/" title="Firefox3.5.5不能登录google账号的解决方法">Firefox3.5.5不能登录google账号的解决方法</a> (0)</li><li>2009/08/13 -- <a href="http://www.feng-jun.com/talk-about-linux/" title="linux随感">linux随感</a> (6)</li><li>2009/07/28 -- <a href="http://www.feng-jun.com/php-opensorce/" title="14款开源PHP软件推荐">14款开源PHP软件推荐</a> (4)</li><li>2009/05/18 -- <a href="http://www.feng-jun.com/migrate-from-qzone-to-wordpress/" title="成功从QQ空间搬家到wordpress">成功从QQ空间搬家到wordpress</a> (2)</li></ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.feng-jun.com" >封俊</a> : <a class="comment_content" href="http://www.feng-jun.com/about-software/#comment-345" title="View the entire comment by 封俊" >@simple 
用得WP Kit CN进行文章截断的，截断后就会显示字数了。</a></li>
<li><a class="commentor" href="http://www.geekspace.cn" >simple</a> : <a class="comment_content" href="http://www.feng-jun.com/about-software/#comment-344" title="View the entire comment by simple" >你好，我想请问一下你的每篇文章都会显示字数，这是什么插件实现的？</a></li>
<li><a class="commentor" href="" >落潭</a> : <a class="comment_content" href="http://www.feng-jun.com/about-software/#comment-30" title="View the entire comment by 落潭" >一直用Kmplayer 感覺還不錯！</a></li>
<li><a class="commentor" href="" >现世安稳</a> : <a class="comment_content" href="http://www.feng-jun.com/about-software/#comment-29" title="View the entire comment by 现世安稳" >你好牛x啊，哈哈重装个系统都能摆出这么一大段废话不多说了下次回来帮我重装系统吧e151我电脑感觉又有...</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.feng-jun.com/about-software/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using xcache
Page Caching using xcache
Database Caching 81/219 queries in 0.466 seconds using xcache
Object Caching 3795/3929 objects using xcache
Content Delivery Network via Amazon Web Services: CloudFront: Amazon Web Services: S3: cdn.feng-jun.com

Served from: www.feng-jun.com @ 2010-07-31 16:19:04 -->