<?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"
	>

<channel>
	<title>No Title &#187; 计算机</title>
	<atom:link href="http://www.wengshiyu.net/category/computer/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wengshiyu.net</link>
	<description>No title is good title</description>
	<pubDate>Tue, 14 Oct 2008 13:06:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Ubuntu安装使用指纹识别</title>
		<link>http://www.wengshiyu.net/20080825/ubuntu-finger.html</link>
		<comments>http://www.wengshiyu.net/20080825/ubuntu-finger.html#comments</comments>
		<pubDate>Mon, 25 Aug 2008 14:04:32 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[fprint]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[指纹识别]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/?p=188</guid>
		<description><![CDATA[早就下了Ubuntu 8.04，前段时间因为显卡驱动一直不支持我的ATI Mobility Radeon HD2600，屏幕都是花花的，所以一直没装，前几天发现新的驱动终于支持了，迅速把Ubuntu安装上，不错，所有的显示效果都正常。
我的笔记本是带指纹识别的，但是Ubuntu没有自动安装驱动，上网查了一下，我的指纹识别芯片是AES1610，目前已经有支持的驱动lfprint，为了不要浪费我的指纹识别，我试着装了一下：
1.打开新立得软件包管理器，搜索fprint，安装libfprint0（基础库和驱动）、fprint-demo（图形管理界面）、libpam-fprint（验证指纹库）
2.装好以后用fprint-demo发现无法访问设备，原来是没有把当前用户添加到usb设备组，把当前用户添加到usb用户组中：
增加用户组usbfs
sudo groupadd usbfs
查看usbfs用户组的gid
cat /etc/group &#124; grep usbfs
usbfs：x：1001：
把当前用户增加到usbfs组
sudo gedit /etc/group
把
usbfs：x：1001：
修改为
usbfs：x：1001：weng（weng改为自己的用户名）
为USB设备重新设置权限编辑/etc/fstab文件，添加下面两行，注意你的gid可能不是1001
sudo gedit /etc/fstab
在末尾加上
# 1002 is the USB group IDI
none /proc/bus/usb usbfs devgid=1001，devmode=664 0 0
重新启动后，fprint-demo就可以正常使用设备了
3.重启后运行fprint-demo或者pam_fprint_enroll就可以开始注册指纹了，fprint-demo下点击Enroll
4.注册完指纹还不行，因为没有把验证方式添加到系统中
打开终端，先备份一下配置文件，以免修改错
sudo cp /etc/pam.d/common-auth /etc/pam.d/common-auth.bak
修改pam的验证配置
sudo gedit /etc/pam.d/common-auth
把
auth requisite pam_unix.so nullok_secure
auth optional pam_smbpass.so migrate missingok
改为
auth required pam_env.so #&#8230;
auth sufficient pam_fprint.so
auth sufficient pam_unix.so try_first_pass likeauth nullok_secure
auth optional pam_smbpass.so migrate missingok
auth required pam_deny.so 
5.重启系统，这时登录时就要验证指纹了，如果指纹验证失败还可以输入密码，注意：登录时画面停顿在那并不是假死，而是要验证指纹
目前的问题是：

登录时要验证指纹，但是没有提示信息框，要是不懂的就以为假死在那了
注册了十个指纹，但是每次验证指纹都要求用right [...]]]></description>
			<content:encoded><![CDATA[<p>早就下了Ubuntu 8.04，前段时间因为显卡驱动一直不支持我的ATI Mobility Radeon HD2600，屏幕都是花花的，所以一直没装，前几天发现新的驱动终于支持了，迅速把Ubuntu安装上，不错，所有的显示效果都正常。</p>
<p>我的笔记本是带指纹识别的，但是Ubuntu没有自动安装驱动，上网查了一下，我的指纹识别芯片是AES1610，目前已经有支持的驱动l<a href="http://www.reactivated.net/fprint/wiki/Main_Page" target="_blank" class="liexternal">fprint</a>，为了不要浪费我的指纹识别，我试着装了一下：</p>
<blockquote><p>1.打开新立得软件包管理器，搜索fprint，安装<span style="color: #ff6600;">libfprint0</span>（基础库和驱动）、<span style="color: #ff6600;">fprint-demo</span>（图形管理界面）、<span style="color: #ff6600;">libpam-fprint</span>（验证指纹库）</p>
<p>2.装好以后用fprint-demo发现无法访问设备，原来是没有把当前用户添加到usb设备组，把当前用户添加到usb用户组中：<br />
增加用户组usbfs<br />
<<span style="color: #ff0000;">coolcode>sudo groupadd usbfs</coolcode></span><br />
查看usbfs用户组的gid<br />
<coolcode>cat /etc/group | grep usbfs<br />
usbfs：x：1001：</coolcode><br />
把当前用户增加到usbfs组<br />
<span style="color: #ff0000;"><coolcode>sudo gedit /etc/group</coolcode></span><br />
把<br />
<coolcode>usbfs：x：1001：</coolcode><br />
修改为<br />
<coolcode>usbfs：x：1001：weng</coolcode>（weng改为自己的用户名）<br />
为USB设备重新设置权限编辑/etc/fstab文件，添加下面两行，注意你的gid可能不是1001<br />
<span style="color: #ff0000;"><coolcode>sudo gedit /etc/fstab</coolcode></span><br />
在末尾加上<br />
<span style="color: #ff0000;"><coolcode># 1002 is the USB group IDI<br />
none /proc/bus/usb usbfs devgid=1001，devmode=664 0 0</coolcode></span><br />
重新启动后，fprint-demo就可以正常使用设备了</p>
<p>3.重启后运行<span style="color: #0000ff;">fprint-demo</span>或者<span style="color: #0000ff;">pam_fprint_enroll</span>就可以开始注册指纹了，<span style="color: #0000ff;">fprint-demo</span>下点击Enroll</p>
<p>4.注册完指纹还不行，因为没有把验证方式添加到系统中<br />
打开终端，先备份一下配置文件，以免修改错<br />
<span style="color: #ff0000;"><coolcode>sudo cp /etc/pam.d/common-auth /etc/pam.d/common-auth.bak</coolcode></span><br />
修改pam的验证配置<br />
<span style="color: #ff0000;"><coolcode>sudo gedit /etc/pam.d/common-auth</coolcode></span><br />
把<br />
<span style="color: #ff0000;"><coolcode>auth requisite pam_unix.so nullok_secure<br />
auth optional pam_smbpass.so migrate missingok</coolcode></span><br />
改为<br />
<span style="color: #ff0000;"><coolcode>auth required pam_env.so #&#8230;<br />
auth sufficient pam_fprint.so<br />
auth sufficient pam_unix.so try_first_pass likeauth nullok_secure<br />
auth optional pam_smbpass.so migrate missingok<br />
auth required pam_deny.so </coolcode></span></p>
<p>5.重启系统，这时登录时就要验证指纹了，如果指纹验证失败还可以输入密码，<span style="color: #339966;">注意：登录时画面停顿在那并不是假死，而是要验证指纹</span></p></blockquote>
<p>目前的问题是：</p>
<ol>
<li>登录时要验证指纹，但是没有提示信息框，要是不懂的就以为假死在那了</li>
<li>注册了十个指纹，但是每次验证指纹都要求用right little finger来验证</li>
<li>用控制台的时候，首次验证通过后，再次使用sudo命令会提示<span style="color: #00ffff;"><code>段错误</code></span></li>
<li>fprint的驱动还不够稳定，莫名奇妙的就不能启动设备</li>
</ol>
<p>希望fprint能够早点成熟起来。</p>
<p>Ubuntu 8.04的确很好用，再赞一个～～</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20080825/ubuntu-finger.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Firefox 3 正式发布</title>
		<link>http://www.wengshiyu.net/20080618/firefox-3-published.html</link>
		<comments>http://www.wengshiyu.net/20080618/firefox-3-published.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 08:31:03 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[ff3]]></category>

		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/?p=173</guid>
		<description><![CDATA[下载日到了！
创造吉尼斯世界记录
体验更好的互联网
听上去不错吧！需要您做的仅仅是现在就下载Firefox3，就可以帮助我们一起来创造这项吉尼斯世界记录──就是这么简单！
请在2008年6月18日UTC时间18:16之 前下载Firefox 3，即美国山景城时间11:16，多伦多时间14:16，里约热内卢时间15:16，巴黎、马德里、柏林、罗马和华沙时间20:16，莫斯科时间 22:16，北京时间2008年6月19日2:16，东京时间2008年6月19日3:16。
今天是Firefox 3的正式发布日，原计划是北京时间2008年6月18日 01：00发布，但是好像晚了16分钟。我已经下载了移动版的ff3，为了增加中国的下载数，我又从谋智网络下了一次，目前中国的下载量只有11w多，用ff的国人加油哦。有消息说：
今天是Firefox3.0全球下载日，在冲击世界纪录的同时Mozilla官方网站提供了一个Firefox全球下载情况直播页面。从这个页面我们可以 看到全球下载Firefox3.0的实况，我们可以看到，中国一直是这些国家中下载量最少的。这也反应出了中国用户对Firefox的认知度并不高。
但是我觉得，中国人用ff的人还是很多的，只是他们不一定会从官方网站下载，他们比较喜欢光顾XX软件园、XX软件站的地方，这些地方的下载量是Mozilla统计不了的吧。

在Spread Firefox还有一个秀一秀，可以下载并打印一份属于您自己的Firefox 3下载日记录证书，SpreadFirefox网站比较慢，下载这个证书要耐心。证书是pdf格式的，要是图片就好了，我的Firefox 3下载日记录证书（需要pdf阅读器）。
刚才无聊把我的Firefox 3下载日记录证书转换为图片了
在右边（好啰嗦）
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spreadfirefox.com/node&amp;id=237217&amp;t=301" ><img class="alignleft" title="Download Day - Chinese" src="http://www.spreadfirefox.com/files/images/affiliates_banners/180x150_02_zh-cn.png" border="0" alt="Download Day - Chinese" /></a>下载日到了！<br />
创造吉尼斯世界记录<br />
体验更好的互联网</p>
<p>听上去不错吧！需要您做的仅仅是现在就下载Firefox3，就可以帮助我们一起来创造这项吉尼斯世界记录──就是这么简单！</p>
<p>请在2008年6月18日<a href="http://www.timeanddate.com/worldclock/fixedtime.html?month=6&amp;day=18&amp;year=2008&amp;hour=18&amp;min=15&amp;sec=0&amp;p1=0" class="liexternal">UTC时间18:16</a>之 前下载Firefox 3，即美国山景城时间11:16，多伦多时间14:16，里约热内卢时间15:16，巴黎、马德里、柏林、罗马和华沙时间20:16，莫斯科时间 22:16，<span style="color: #ff0000;">北京时间2008年6月19日2:16</span>，东京时间2008年6月19日3:16。</p>
<p>今天是Firefox 3的正式发布日，原计划是北京时间2008年6月18日 01：00发布，但是好像晚了16分钟。我已经下载了移动版的ff3，为了增加中国的下载数，我又从<a href="http://www.mozillaonline.com/" target="_blank" class="liexternal">谋智网络</a>下了一次，目前中国的下载量只有11w多，用ff的国人加油哦。有消息说：</p>
<blockquote><p>今天是Firefox3.0全球下载日，在冲击世界纪录的同时Mozilla官方网站提供了一个Firefox全球下载情况<a href="http://downloadcounter.sj.mozilla.com/" target="_blank" class="liexternal">直播页面</a>。从这个页面我们可以 看到全球下载Firefox3.0的实况，我们可以看到，中国一直是这些国家中下载量最少的。这也反应出了中国用户对Firefox的认知度并不高。</p></blockquote>
<p>但是我觉得，中国人用ff的人还是很多的，只是他们不一定会从官方网站下载，他们比较喜欢光顾XX软件园、XX软件站的地方，这些地方的下载量是Mozilla统计不了的吧。</p>
<p><a href="http://www.wengshiyu.net/wp-content/uploads/2008/06/download-day-2008.png" ><img class="alignright size-medium wp-image-175" title="我的Firefox 3下载日记录证书" src="http://www.wengshiyu.net/wp-content/uploads/2008/06/download-day-2008-300x231.png" alt="" width="230" height="175" /></a></p>
<p>在Spread Firefox还有一个<a href="http://www.spreadfirefox.com/zh-CN/worldrecord/certificate_form" target="_blank" class="liexternal">秀一秀</a>，可以下载并打印一份属于您自己的Firefox 3下载日记录证书，SpreadFirefox网站比较慢，下载这个证书要耐心。证书是pdf格式的，要是图片就好了，我的<a href="http://www.wengshiyu.net/wp-content/uploads/2008/06/download-day-2008.pdf" class="lipdf">Firefox 3下载日记录证书</a>（需要pdf阅读器）。</p>
<p>刚才无聊把我的Firefox 3下载日记录证书转换为图片了</p>
<p>在右边（好啰嗦）</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20080618/firefox-3-published.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>我的笔记本</title>
		<link>http://www.wengshiyu.net/20080328/my-notebook.html</link>
		<comments>http://www.wengshiyu.net/20080328/my-notebook.html#comments</comments>
		<pubDate>Fri, 28 Mar 2008 14:05:40 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[acer]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/20080328/my-notebook.html</guid>
		<description><![CDATA[在招行订购的笔记本到货了，炫一下先
型号是Acer TravelMate 5720G602G16M

配置在这里

处理器：Intel Core 2 Duo T7500
内存：1G DDR2 667 X2
显卡：ATI MobilityRadeon HD2600 512M
硬盘：ST 5400RPM SATA 160G
刻录机：16X DVD SuperMulti DL
显示器：15.4 WXGA
其他：Bluetooth2.0+EDR
        Finger Identification
        130w Cam
        5in1 Card Reader
操作系统：Vista Home Premium

下面是图片
先是一个包包

下面有个鼠标，杂牌的。。。

再往下

是一个箱子

打开后又是一个箱子

打开只后终于看到了重点

里面的另外一个盒子的内容

电池

最关键的

键盘

]]></description>
			<content:encoded><![CDATA[<p>在招行订购的笔记本到货了，炫一下先<br />
型号是Acer TravelMate 5720G602G16M<br />
</br><br />
配置在这里</p>
<blockquote><p>
处理器：Intel Core 2 Duo T7500<br />
内存：1G DDR2 667 X2<br />
显卡：ATI MobilityRadeon HD2600 512M<br />
硬盘：ST 5400RPM SATA 160G<br />
刻录机：16X DVD SuperMulti DL<br />
显示器：15.4 WXGA<br />
其他：Bluetooth2.0+EDR<br />
        Finger Identification<br />
        130w Cam<br />
        5in1 Card Reader<br />
操作系统：Vista Home Premium
</p></blockquote>
<p>下面是图片</p>
<p>先是一个包包<br />
<img src="http://farm4.static.flickr.com/3180/2304165565_b37fc863c3.jpg" alt="开箱" /><br />
下面有个鼠标，杂牌的。。。<br />
<img src="http://farm4.static.flickr.com/3109/2304165571_68c5028801.jpg" alt="鼠标" /><br />
再往下<br />
<img src="http://farm3.static.flickr.com/2235/2304165585_19a0e85f77.jpg" alt="往下" /><br />
是一个箱子<br />
<img src="http://farm3.static.flickr.com/2285/2304165587_b7e3666e64.jpg" alt="一个箱子" /><br />
打开后又是一个箱子<br />
<img src="http://farm3.static.flickr.com/2074/2304165597_091057eb7a.jpg" alt="又是一个箱子" /><br />
打开只后终于看到了重点<br />
<img src="http://farm4.static.flickr.com/3037/2306938674_5b38d418f1.jpg" alt="重点" /><br />
里面的另外一个盒子的内容<br />
<img src="http://farm4.static.flickr.com/3048/2306938676_5c81532458.jpg" alt="盒子的内容" /><br />
电池<br />
<img src="http://farm3.static.flickr.com/2197/2306938686_c6493e2169.jpg" alt="电池" /><br />
最关键的<br />
<img src="http://farm3.static.flickr.com/2229/2306938702_eae372e7fc.jpg" alt="关键" /><br />
键盘<br />
<img src="http://farm3.static.flickr.com/2415/2306104967_102571c9f8.jpg" alt="键盘" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20080328/my-notebook.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>珊瑚虫</title>
		<link>http://www.wengshiyu.net/20070929/coral.html</link>
		<comments>http://www.wengshiyu.net/20070929/coral.html#comments</comments>
		<pubDate>Sat, 29 Sep 2007 09:49:17 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[qq]]></category>

		<category><![CDATA[珊瑚虫]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/20070929/coral.html</guid>
		<description><![CDATA[今天刚看到新闻，确认珊瑚虫的作者被捕。
具体的可以看视频：


  
点此播放


对与这个事件，没什么好说的，不过个人支持珊瑚虫作者，鄙视Tx。
以下仅对视频发表议论：

枪手一：安装后有流氓软件。
我用了那么长时间，我怎么没发现，难道还有流氓软件版？自己安装的时候不看清楚，都是下一步点下去的吧？

枪手一：原版有安全漏洞提醒，珊瑚虫版没有。
拜托，珊瑚虫都是在原版基础上外挂的，怎么会没有。

Tx顾问：使用珊瑚虫版qq无法软件升级，容易受到黑客攻击和病毒感染。
胡说，我用珊瑚虫版一样被强制升级过。原版QQ也一样容易收到攻击的。

枪手二：珊瑚虫版有IP的显示，泄漏个人隐私。
很多网站都有显示IP的哦，尤其是一些论坛。

枪手三：由于显示IP，可以让别人知道自己是否在线。
天啊，隐身不论版本都是看不出来的。

Tx顾问：珊瑚虫版有广告插件。用户的选择全和知情权被侵犯。
你怎么不说你自己的广告还要多呢？你让用户选择了么？

注意视频片段的4：08起，即将听到熟悉的音乐。
没错，就是Prison Break的片头音乐，这个电视台你使用别人的音乐付费了么？

台词：……在其犯罪的道路上越陷越深……
还没有判决就已经确定是犯罪了！？“无罪推断”跑哪了？
以上愚见，如有不妥，敬请指出。
有关新闻参见：点击查看
]]></description>
			<content:encoded><![CDATA[<p>今天刚看到新闻，确认珊瑚虫的作者被捕。<br />
具体的可以看视频：</p>
<div class="hVlog" style="text-align: left">
<br />
  <a href="http://player.youku.com/player.php/sid/XOTA0ODUyNA==/v.swf" type="application/x-shockwave-flash" onclick="vPIPPlay(this, 'width=450, height=372', '', ''); return false;"><br />
点此播放</a>
</div>
<p><font size=3><br />
对与这个事件，没什么好说的，不过个人支持珊瑚虫作者，鄙视Tx。<br />
以下仅对视频发表议论：</font></p>
<ol>
枪手一：安装后有流氓软件。<br />
我用了那么长时间，我怎么没发现，难道还有流氓软件版？自己安装的时候不看清楚，都是下一步点下去的吧？</ol>
<ol>
枪手一：原版有安全漏洞提醒，珊瑚虫版没有。<br />
拜托，珊瑚虫都是在原版基础上外挂的，怎么会没有。</ol>
<ol>
Tx顾问：使用珊瑚虫版qq无法软件升级，容易受到黑客攻击和病毒感染。<br />
胡说，我用珊瑚虫版一样被强制升级过。原版QQ也一样容易收到攻击的。</ol>
<ol>
枪手二：珊瑚虫版有IP的显示，泄漏个人隐私。<br />
很多网站都有显示IP的哦，尤其是一些论坛。</ol>
<ol>
枪手三：由于显示IP，可以让别人知道自己是否在线。<br />
天啊，隐身不论版本都是看不出来的。</ol>
<ol>
Tx顾问：珊瑚虫版有广告插件。用户的选择全和知情权被侵犯。<br />
你怎么不说你自己的广告还要多呢？你让用户选择了么？</ol>
<ol>
注意视频片段的4：08起，即将听到熟悉的音乐。<br />
没错，就是Prison Break的片头音乐，这个电视台你使用别人的音乐付费了么？</ol>
<ol>
台词：……在其犯罪的道路上越陷越深……<br />
还没有判决就已经确定是犯罪了！？“无罪推断”跑哪了？</ol>
<p>以上愚见，如有不妥，敬请指出。<br />
有关新闻参见：<a href="http://www.cnbeta.com/topics/405.htm" class="liexternal">点击查看</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20070929/coral.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>转移成功</title>
		<link>http://www.wengshiyu.net/20070609/%e8%bd%ac%e7%a7%bb%e6%88%90%e5%8a%9f.html</link>
		<comments>http://www.wengshiyu.net/20070609/%e8%bd%ac%e7%a7%bb%e6%88%90%e5%8a%9f.html#comments</comments>
		<pubDate>Sat, 09 Jun 2007 02:50:31 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[生活]]></category>

		<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/word/?p=66</guid>
		<description><![CDATA[原来在Space上的文章都已经转换过来了，稍微有点问题，就是Space上从第21篇文章开始，发表时间都是12：00，因为这些是用BlogBus转的，转换出来的文件不够标准。
之前的文章都是直接导入Space的feed，除了没有评论，别的都正确。
]]></description>
			<content:encoded><![CDATA[<p>原来在Space上的文章都已经转换过来了，稍微有点问题，就是Space上从第21篇文章开始，发表时间都是12：00，因为这些是用<a href="http://www.blogbus.com/" class="liexternal">BlogBus</a>转的，转换出来的文件不够标准。</p>
<p>之前的文章都是直接导入Space的feed，除了没有评论，别的都正确。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20070609/%e8%bd%ac%e7%a7%bb%e6%88%90%e5%8a%9f.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>关闭了qqzone</title>
		<link>http://www.wengshiyu.net/20070329/%e5%85%b3%e9%97%ad%e4%ba%86qqzone.html</link>
		<comments>http://www.wengshiyu.net/20070329/%e5%85%b3%e9%97%ad%e4%ba%86qqzone.html#comments</comments>
		<pubDate>Thu, 29 Mar 2007 09:52:20 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[qq]]></category>

		<category><![CDATA[qqzone]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/word/?p=61</guid>
		<description><![CDATA[终于把lj的QQzone给关闭了，不错~~Powered by ScribeFire.

]]></description>
			<content:encoded><![CDATA[<p>终于把lj的QQzone给关闭了，不错~~Powered by <a href="http://scribefire.com/" class="liexternal">ScribeFire</a>.</p>
<p><img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?space=wterry1984&amp;page=RSS%3a+%e5%85%b3%e9%97%ad%e4%ba%86qqzone&amp;referrer=" border="0" height="1" width="1" /><img src="http://c.live.com/c.gif?NC=31263&amp;NA=1149&amp;PI=88469&amp;RF=&amp;DI=3919&amp;PS=85545&amp;TP=wterry1984.spaces.live.com&amp;GT1=wterry1984" style="position: absolute" height="0" width="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20070329/%e5%85%b3%e9%97%ad%e4%ba%86qqzone.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Performancing改名了</title>
		<link>http://www.wengshiyu.net/20070326/performancing%e6%94%b9%e5%90%8d%e4%ba%86.html</link>
		<comments>http://www.wengshiyu.net/20070326/performancing%e6%94%b9%e5%90%8d%e4%ba%86.html#comments</comments>
		<pubDate>Mon, 26 Mar 2007 05:37:15 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[Performancing]]></category>

		<category><![CDATA[ScribeFire]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/word/?p=60</guid>
		<description><![CDATA[今天Firefox自动更新了一些扩展，Performancing也在其中，完成之后发现它的图标颜色变了，打开一看，改名了。现在叫做ScribeFire，主页也变成了http://scribefire.com/，不过这个新主页还没有建好。
虽然改名了，但还是一样的好用。
Powered by ScribeFire.

]]></description>
			<content:encoded><![CDATA[<p>今天Firefox自动更新了一些扩展，Performancing也在其中，完成之后发现它的图标颜色变了，打开一看，改名了。现在叫做<strong>Scribe<font color="#ff6600">Fire</font></strong>，主页也变成了http://scribefire.com/，不过这个新主页还没有建好。</p>
<p>虽然改名了，但还是一样的好用。</p>
<p>Powered by <a href="http://scribefire.com/" class="liexternal">ScribeFire</a>.</p>
<p><img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?space=wterry1984&amp;page=RSS%3a+Performancing%e6%94%b9%e5%90%8d%e4%ba%86&amp;referrer=" border="0" height="1" width="1" /><img src="http://c.live.com/c.gif?NC=31263&amp;NA=1149&amp;PI=88469&amp;RF=&amp;DI=3919&amp;PS=85545&amp;TP=wterry1984.spaces.live.com&amp;GT1=wterry1984" style="position: absolute" height="0" width="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20070326/performancing%e6%94%b9%e5%90%8d%e4%ba%86.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>使用Performancing向Space发文章</title>
		<link>http://www.wengshiyu.net/20070314/%e4%bd%bf%e7%94%a8performancing%e5%90%91space%e5%8f%91%e6%96%87%e7%ab%a0.html</link>
		<comments>http://www.wengshiyu.net/20070314/%e4%bd%bf%e7%94%a8performancing%e5%90%91space%e5%8f%91%e6%96%87%e7%ab%a0.html#comments</comments>
		<pubDate>Wed, 14 Mar 2007 12:54:20 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[Performancing]]></category>

		<category><![CDATA[Space]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/word/?p=59</guid>
		<description><![CDATA[本人用的是Firefox下的Performancing1.下载Performancing for Firefox，自己到addons.mozilla.org搜索……
2.打开自己的Space，进入选项，再到电子邮件发布，启用。

    在电子邮件地址写上自己的Email地址
    输入机密字
    发布设置选立即发布（这样就不用再打开网页编辑）
    保存

得到一个电子邮件地址：xxxxxxx.yyyy@spaces.live.com
3.打开Performancing，Add Blog，输入自己的Space地址，Performancing会自动检测Blog的类型，下一步。
到输入用户名、密码时，把上面得到的电子邮件地址的xxxxxxx作为用户名，yyyy作为密码就可以登录了，剩下的就是用Performancing来写啦。
不过用Performancing发的文章都被加上了一点点东西……看下面……
powered by performancing firefox

]]></description>
			<content:encoded><![CDATA[<p>本人用的是Firefox下的Performancing1.下载Performancing for Firefox，自己到<a href="http://addons.mozilla.org" class="liexternal">addons.mozilla.org</a>搜索……</p>
<p>2.打开自己的Space，进入选项，再到电子邮件发布，启用。</p>
<ul>
<li>    在电子邮件地址写上自己的Email地址</li>
<li>    输入机密字</li>
<li>    发布设置选立即发布（这样就不用再打开网页编辑）</li>
<li>    保存</li>
</ul>
<p>得到一个电子邮件地址：<font><span>xxxxxxx</span>.yyyy<span></span>@spaces.live.com</font></p>
<p>3.打开Performancing，Add Blog，输入自己的Space地址，Performancing会自动检测Blog的类型，下一步。<br />
到输入用户名、密码时，把上面得到的电子邮件地址的xxxxxxx作为用户名，yyyy作为密码就可以登录了，剩下的就是用Performancing来写啦。</p>
<p>不过用Performancing发的文章都被加上了一点点东西……看下面……</p>
<p>powered by <a href="http://performancing.com/firefox" class="liexternal">performancing firefox</a></p>
<p><img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?space=wterry1984&amp;page=RSS%3a+%e4%bd%bf%e7%94%a8Performancing%e5%90%91Space%e5%8f%91%e6%96%87%e7%ab%a0&amp;referrer=" border="0" height="1" width="1" /><img src="http://c.live.com/c.gif?NC=31263&amp;NA=1149&amp;PI=88469&amp;RF=&amp;DI=3919&amp;PS=85545&amp;TP=wterry1984.spaces.live.com&amp;GT1=wterry1984" style="position: absolute" height="0" width="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20070314/%e4%bd%bf%e7%94%a8performancing%e5%90%91space%e5%8f%91%e6%96%87%e7%ab%a0.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Byebye 小儿科</title>
		<link>http://www.wengshiyu.net/20070216/byebye-%e5%b0%8f%e5%84%bf%e7%a7%91.html</link>
		<comments>http://www.wengshiyu.net/20070216/byebye-%e5%b0%8f%e5%84%bf%e7%a7%91.html#comments</comments>
		<pubDate>Fri, 16 Feb 2007 03:45:15 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[beryl]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/word/?p=56</guid>
		<description><![CDATA[今天把Beryl装上了，这个3D桌面实在是太N了，Vista的3D桌面真的就是小儿科，还需要那么高的配置，这就是N年的杰作？贴图为证：强大的Beryl


powered by performancing firefox

]]></description>
			<content:encoded><![CDATA[<p>今天把Beryl装上了，这个3D桌面实在是太N了，Vista的3D桌面真的就是小儿科，还需要那么高的配置，这就是N年的杰作？贴图为证：强大的Beryl<br />
<img src="http://static.flickr.com/169/391711659_bcce7f6871_o.png" height="504" width="675" /><br />
<img src="http://static.flickr.com/172/391712504_f1488ae6bd_o.png" height="505" width="675" /></p>
<p>powered by <a href="http://performancing.com/firefox" class="liexternal">performancing firefox</a></p>
<p><img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?space=wterry1984&amp;page=RSS%3a+Byebye+%e5%b0%8f%e5%84%bf%e7%a7%91&amp;referrer=" border="0" height="1" width="1" /><img src="http://c.live.com/c.gif?NC=31263&amp;NA=1149&amp;PI=88469&amp;RF=&amp;DI=3919&amp;PS=85545&amp;TP=wterry1984.spaces.live.com&amp;GT1=wterry1984" style="position: absolute" height="0" width="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20070216/byebye-%e5%b0%8f%e5%84%bf%e7%a7%91.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu</title>
		<link>http://www.wengshiyu.net/20070213/ubuntu.html</link>
		<comments>http://www.wengshiyu.net/20070213/ubuntu.html#comments</comments>
		<pubDate>Tue, 13 Feb 2007 05:51:45 +0000</pubDate>
		<dc:creator>WteRry</dc:creator>
		
		<category><![CDATA[计算机]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.wengshiyu.net/word/?p=55</guid>
		<description><![CDATA[今天心血来潮安装了Ubutun，终于成功了。
遇到的问题如下：
1.Ubuntu被我装在第三块硬盘上，Grub在Ubuntu的/上，但是很奇怪Grub总是把这第三块硬盘识别成第二块，第一次启动的时候就说找不到文件。还好Grub可以直接编辑命令行，终于启动成功
2.可能是和我硬盘全部是NTFS分区有关，如果把Grub装到MBR上，就一直出错，郁闷死了，最后只好fdisk ／mbr。
3.安装Nvidia显卡驱动，修改了X的配置，结果无法启动图形界面，在网上找了半天，原来只有在配置文件中加两个字母就好。
4.忘了把Windows下Firefox的配置导出来了，这里又要调一次，累啊。
5.不习惯Linux下的智能拼音，打这点字打了半天。今天来补贴一张图



]]></description>
			<content:encoded><![CDATA[<p>今天心血来潮安装了Ubutun，终于成功了。<br />
遇到的问题如下：<br />
1.Ubuntu被我装在第三块硬盘上，Grub在Ubuntu的/上，但是很奇怪Grub总是把这第三块硬盘识别成第二块，第一次启动的时候就说找不到文件。还好Grub可以直接编辑命令行，终于启动成功<br />
2.可能是和我硬盘全部是NTFS分区有关，如果把Grub装到MBR上，就一直出错，郁闷死了，最后只好fdisk ／mbr。<br />
3.安装Nvidia显卡驱动，修改了X的配置，结果无法启动图形界面，在网上找了半天，原来只有在配置文件中加两个字母就好。<br />
4.忘了把Windows下Firefox的配置导出来了，这里又要调一次，累啊。<br />
5.不习惯Linux下的智能拼音，打这点字打了半天。今天来补贴一张图<br />
<img src="http://static.flickr.com/178/389676321_e0b465d170_o.png" height="491" width="655" /><br />
<img src="http://static.flickr.com/154/389677907_223aa715b5_o.png" /></p>
<p><img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?space=wterry1984&amp;page=RSS%3a+Ubuntu&amp;referrer=" border="0" height="1" width="1" /><img src="http://c.live.com/c.gif?NC=31263&amp;NA=1149&amp;PI=88469&amp;RF=&amp;DI=3919&amp;PS=85545&amp;TP=wterry1984.spaces.live.com&amp;GT1=wterry1984" style="position: absolute" height="0" width="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wengshiyu.net/20070213/ubuntu.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
