<?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>LDCN &#187; oceanboo</title>
	<atom:link href="http://linuxdesktop.cn/author/oceanboo/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxdesktop.cn</link>
	<description>分享桌面心得，传播业界资讯</description>
	<lastBuildDate>Mon, 01 Mar 2010 13:41:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>如何在Pidgin里面使用MSNP14</title>
		<link>http://linuxdesktop.cn/2008/07/18/use-msnp14-in-pidgin.html</link>
		<comments>http://linuxdesktop.cn/2008/07/18/use-msnp14-in-pidgin.html#comments</comments>
		<pubDate>Fri, 18 Jul 2008 03:28:50 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[网络相关]]></category>
		<category><![CDATA[msn]]></category>
		<category><![CDATA[pidgin]]></category>

		<guid isPermaLink="false">http://linuxdesktop.cn/?p=1742</guid>
		<description><![CDATA[在 Linux 下， Pidgin 是很多人的 IM 一站式解决方案，其中包括了众多的 IM Protocol 。
不过广则广矣，很多 Protocol 都使用了旧的版本了，使得这些 IM 都得不到最新的体验，MSN 就是其中一例。到现... ]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://linuxdesktop.cn/logo/pidgin.png" alt="" width="120" height="33" />在 Linux 下， Pidgin 是很多人的 IM 一站式解决方案，其中包括了众多的 IM Protocol 。</p>
<p>不过广则广矣，很多 Protocol 都使用了旧的版本了，使得这些 IM 都得不到最新的体验，MSN 就是其中一例。到现在为止， Pidgin 还在使用 MSN 的 MSNP9 的 Protocol ，正如大家所抱怨的，不能离线消息，不能看签名，等等等等。。。<a name="entrymore"></a></p>
<p>本文向你展示如何在Pidgin里使用MSNP14。</p>
<p>&#8212;&#8211;</p>
<p>其实 Pidgin 里面 MSN Protocol 的主要贡献者 Felipe Contreras，把他最近对 Pidgin 里面 MSN Protocol的开发工作放到了 google code 上去了。因为他也在抱怨在给pidgin的这个协议上干了4年之后，他都还没有commit的权限，无法把他最新的一些工作放到 Pidgin 里面去。所以他决定单独把它发布出来。 所以 Pidgin 现在是可以支持 MSN 比较新的 MSNP14 协议的。<br />
目前msn-pecan的版本(0.0.14)支持如下的功能:</p>
<ul>
<li>Support for personal messages</li>
<li>Server-side storage for display names (private alias)</li>
<li>Partial direct connection support (p2p transfers)</li>
<li> Improved network IO (using GIOChannel)</li>
<li> Improved error handling</li>
<li> Network issues tested with netem</li>
<li> GObject usage</li>
</ul>
<p>方法比较简单，以 Ubuntu 为例。</p>
<p>1、在确保系统安装了Pidgin的情况下，编辑你的 /etc/apt/sources.list ，如果你是Ubuntu 8.04 Hardy Heron，就加下面两行：</p>
<p><code>deb http://ppa.launchpad.net/msn-pecan/ubuntu hardy main<br />
deb-src http://ppa.launchpad.net/msn-pecan/ubuntu hardy main</code></p>
<p>如果是使用 Ubuntu 7.10 Gutsy Gibbon，则加：</p>
<p><code>deb http://ppa.launchpad.net/msn-pecan/ubuntu gutsy main<br />
deb-src http://ppa.launchpad.net/msn-pecan/ubuntu gutsy main</code></p>
<p>加完以后，在终端下执行以下命令安装</p>
<p><code>sudo apt-get update<br />
sudo apt-get install pidgin-msn-pecan</code></p>
<p>2. 安装这个包，然后打开 Pidgin ， 在 Protocol 里，现在会多出一个名为 WLM 的 Protocol ，将 Account 的 Protocol 从 MSN 改为 WLM ，登录，看看，签名是不是有了？</p>
<p>PS1： 现在这个版本暂时还不支持 offline message，据说下个版本就将支持这一特性。<br />
PS2： Windows/Gentoo或编译安装的方式可以看：<a href="http://code.google.com/p/msn-pecan/wiki/HowToInstall">http://code.google.com/p/msn-pecan/wiki/HowToInstall</a></p>
<p>参考：<br />
<a href="http://code.google.com/p/msn-pecan/wiki/FAQ">http://code.google.com/p/msn-pecan/wiki/FAQ</a><br />
<a href="http://code.google.com/p/msn-pecan/">http://code.google.com/p/msn-pecan/</a><br />
<a href="http://code.google.com/p/msn-pecan/wiki/HowToInstall"> http://code.google.com/p/msn-pecan/wiki/HowToInstall</a><br />
至于msnp是啥东西，大家可以参考:<br />
<a href="http://en.wikipedia.org/wiki/Microsoft_Notification_Protocol">http://en.wikipedia.org/wiki/Microsoft_Notification_Protocol</a></p>
<p>最后感谢 szlug 的 wuzhaojun 提供此方法。</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2008/07/18/use-msnp14-in-pidgin.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>可移动磁盘管理工具 &#8211; DiskSearch</title>
		<link>http://linuxdesktop.cn/2007/10/30/use-disksearch-to-manage-disks.html</link>
		<comments>http://linuxdesktop.cn/2007/10/30/use-disksearch-to-manage-disks.html#comments</comments>
		<pubDate>Tue, 30 Oct 2007 08:18:22 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[数码外设]]></category>
		<category><![CDATA[酷玩软件]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[disksearch]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/10/30/use-desksearch-to-manager-disks</guid>
		<description><![CDATA[最近又下了非常多非常多的 PSP 的游戏镜像（汗自己一个），其实玩来玩去也就是那么些游戏，不过还是在不停的下，好像下载&#8211;拷贝&#8211;试玩&#8211;删除也成了一种娱乐方式。
上次就把镜... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://linuxdesktop.cn/wp-content/uploads/2007/10/disksearch_logo.png" alt="disksearch_logo.png" align="left" />最近又下了非常多非常多的 PSP 的游戏镜像（汗自己一个<img src="http://www.oceanboo.cn/images/emot/sweat.gif" alt="sweat" border="0" />），其实玩来玩去也就是那么些游戏，不过还是在不停的下，好像下载&#8211;拷贝&#8211;试玩&#8211;删除也成了一种娱乐方式。</p>
<p>上次就把镜像刻了5张 DVD ，现在又下了不少，要准备刻盘，可是不知道哪些已经刻了，哪些没刻，又得把那些光盘一张张翻出来看，折腾半天人都累了，而且想到如果以后要突然想玩一个游戏，难道还要一张一张光盘的翻，oh，no。</p>
<p>为此特地到网上找找有没有光盘管理工具，最终的结果就是它 &#8212; <a href="http://disksearch.sourceforge.net/" target="_blank">DiskSearch</a> 。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>DiskSearch 是一个针对可移动磁盘而进行文件搜索的工具。它支持的可移动磁盘包括光盘、ZIP 磁盘等。DiskSearch 而且还支持使用正则表达式进行搜索。当然了，我装的目的只是管理我的那些 PSP 镜像光盘和另外的一些大型软件的备份光盘了。</p>
<p>看看截图吧。</p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/10/disksearch_01.png" title="disksearch_01.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/10/disksearch_01.png" alt="disksearch_01.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/10/30/use-disksearch-to-manage-disks.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>关于Ubuntu 7.10 主目录中文化的解决办法</title>
		<link>http://linuxdesktop.cn/2007/10/29/solve-home-name-problem-on-ubuntu.html</link>
		<comments>http://linuxdesktop.cn/2007/10/29/solve-home-name-problem-on-ubuntu.html#comments</comments>
		<pubDate>Mon, 29 Oct 2007 06:28:48 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[安装配置]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/10/29/solve-home-name-problem-on-ubuntu</guid>
		<description><![CDATA[Ubuntu 7.10 采用了一个名为 XDG-user-directories 的新特性，它会自动判断当前系统的默认语言，然后通过创建标准的目录集来实现统一的管理。换句话说，我们使用中文语言的用户进入系统， 7.10 识... ]]></description>
			<content:encoded><![CDATA[<p><img border="0" align="left" width="120" src="http://linuxdesktop.cn/logo/ubuntu.png" height="31" />Ubuntu 7.10 采用了一个名为 XDG-user-directories 的新特性，它会自动判断当前系统的默认语言，然后通过创建标准的目录集来实现统一的管理。换句话说，我们使用中文语言的用户进入系统， 7.10 识别到当前默认语言为中文，会自动将用户主目录下的几个默认文件夹变成中文名称。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>这本来是一个系统本地化进程上的一种趋势，不过这种体验对于中文或者说非英语系的国家用户来说，这无疑是一种倒退了，很简单的道理，在 CLI 里，原本进入桌面的命令从 cd ~/Desktop 变为 cd ~/桌面 ，不管从哪方面来说，这都是一种失败的体验。</p>
<p>话说回来， Ubuntu 7.10 做得比我们想像中要好，在<a target="_blank" href="http://www.oceanboo.cn/read.php/206.htm">这篇日志</a>我提到过， 7.10 在你变更了系统语言重启之后，会提示你是否需要 update names 。如果你选择 “keep old folder” ，它就不会变更主目录下的目录名为中文。这样就避免了出现上述情况。</p>
<p>不过经我看，并不是所有的用户都会有这个提示， 比如 <a target="_blank" href="http://nuoran.lupaworld.cn/">nuoran</a> 就是这样的一个受害者， 系统在更换语言后，他的系统并没有出现这样的一个提示，直接就把主目录下的默认目录直接变为了中文，这样糟糕的体验直到我装了系统后给他以提示后才得到解决。今天摸索了一下之后，给出类似 <a target="_blank" href="http://nuoran.lupaworld.cn/">nuoran</a> 所遭遇到的这种情况的两个解决办法。</p>
<p>前提：一般我们默认系统为中文环境，同时主目录中的默认目录名为中文。<br />
<strong>1. 重启大法</strong>（此方法为 nuoran 测试后有效的方法。）<br />
首先检查 “系统&#8211;首选项&#8211;会话” 里面是否存在 User folders update 这个启动项，如果没有请自行添加，启动项的命令为 xdg-user-dirs-gtk-update.<br />
然后具体操作路线是： 修改系统环境为英文 &#8211;&gt; 重启电脑 &#8211;&gt; update names 为英文 &#8211;&gt; 修改系统环境为中文 &#8211;&gt; 重启电脑 &#8211;&gt; keep old folder &#8211;&gt; OK 。</p>
<p><strong>2. 欺骗大法</strong> （经个人测试有效，推荐此方式，无须重启系统）<br />
打开一个终端，执行下列命令<br />
<code>export LANG=en_US</code><br />
然后接着执行下列命令，同样会弹出 update names 的窗口，并选择 update names 可以将目录名修改为英文。<br />
<code>xdg-user-dirs-gtk-update</code></p>
<p>设置好之后，如果觉得这个包纯粹就是多余的用户，也可以采用两个方法取消掉它。<br />
1. 在 Session 里面取消掉 User folders update 这个启动项， Session 的位置在 “系统&#8211;首选项&#8211;会话” 。</p>
<p>2. 暴力的方法，直接卸载掉这个包。<br />
<code>sudo apt-get remove xdg-user-dirs*</code></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/10/29/solve-home-name-problem-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>如何自动挂载UDF光盘</title>
		<link>http://linuxdesktop.cn/2007/09/26/auto-mount-udf-image.html</link>
		<comments>http://linuxdesktop.cn/2007/09/26/auto-mount-udf-image.html#comments</comments>
		<pubDate>Wed, 26 Sep 2007 08:27:23 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[安装配置]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/09/26/auto-mount-udf-image</guid>
		<description><![CDATA[今天翻了一张以前刻录的 DVD 盘找一个东东，把盘插入光驱，结果出现了无法挂载卷的错误，光盘不能被正常挂载，这才想起这是一张 UDF 格式的光盘。
简单的说，就是刻录的时候，如果有文件... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://linuxdesktop.cn/logo/linux.png" align="left" height="120" width="109" />今天翻了一张以前刻录的 DVD 盘找一个东东，把盘插入光驱，结果出现了无法挂载卷的错误，光盘不能被正常挂载，这才想起这是一张 UDF 格式的光盘。</p>
<p>简单的说，就是刻录的时候，如果有文件超过2G，用普通的刻录是不行的，必须使用 UDF 格式才能刻录，而 Ubuntu 默认自动挂载是挂不上的。原来都是自己手动用下列命令来挂载。</p>
<p><code>sudo mount -t udf /dev/cdrom /media/cdrom</code></p>
<p>不过为了省事，可以修改fstab文件来达到相同目的。<br />
<code>sudo gedit /etc/fstab</code></p>
<p>找到这么一句</p>
<blockquote><p>引用<br />
/dev/cdrom /media/cdrom0 udf,iso9660 user,noauto,iocharset=utf8 0 0</p></blockquote>
<p>如果你的fstab找不到上面一句话，可以看看这篇文章，光盘自动挂载乱码解决。<br />
在options里添加一个ro就可以了。</p>
<blockquote><p>引用<br />
/dev/cdrom /media/cdrom0 udf,iso9660 user,noauto,ro,iocharset=utf8 0 0</p></blockquote>
<p>以后遇到 UDF 格式的光盘就不会出现挂载错误了。</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/09/26/auto-mount-udf-image.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>介绍两个Linux下的PSP相关工具</title>
		<link>http://linuxdesktop.cn/2007/09/22/some-psp-tools-on-linux.html</link>
		<comments>http://linuxdesktop.cn/2007/09/22/some-psp-tools-on-linux.html#comments</comments>
		<pubDate>Sat, 22 Sep 2007 00:43:33 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[游戏娱乐]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[psp]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/09/22/some-psp-tools-on-linux</guid>
		<description><![CDATA[玩了 PSP 也一段时间了，现在可以给 PSP 下一个绝佳的定义了， PSP 就是”一个 SONY 产的能玩游戏的 MP4&#8220;，听起来似乎很不给 SONY 面子啊，但事实上就是这么回事，PSP 上的好游戏太少了，拿... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/psp_logo.png" title="psp_logo.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/psp_logo.png" title="psp_logo.png" alt="psp_logo.png" align="left" /></a>玩了 PSP 也一段时间了，现在可以给 PSP 下一个绝佳的定义了， PSP 就是”<span style="color: #ff4500">一个 SONY 产的能玩游戏的 MP4</span>&#8220;，听起来似乎很不给 SONY 面子啊，但事实上就是这么回事，PSP 上的好游戏太少了，拿来看电影听歌，作为一个多媒体终端还是不错的。</p>
<p>最近美剧又开始了，PB 第三季的第一集就是下载的 PSP 版本的视频，利用上下班两次地铁的时间看完的（一趟20分钟，来回正好看完），感觉不是太吸引人了，还是看《House M.D》好了，省心还长知识。</p>
<p>说了半天闲话，言归正传，我一直收藏了不少高清的视频（ MTV 之类的），想转换成 PSP 支持的格式，有时间可以在 PSP 上欣赏。</p>
<p>前 段时间一直都是在公司的电脑上用 Windows 来处理的，回到家可就不好办了，笔记本就只有 Ubuntu ，台式机又比较老，转换起来慢吞吞的，于是就想看看找找在 Linux 下的转换工具，结果是令人兴奋的，在 Ubuntu 的官方社区文档中找到了两个 PSP 的专用工具，我们一起来看看。加上上次介绍的<a href="http://www.oceanboo.cn/read.php/179.htm" target="_blank">PSP的ISO游戏压缩工具&#8212;-ciso</a>，在 Ubuntu 下已经基本上可以完美的使用 PSP 了，开源的力量真是伟大啊。</p>
<blockquote><p>PSPVC (Playstation Portable Video Convertor) is a FFMPEG front-end to convert video files for the PSP.</p></blockquote>
<p>这是一个专门为 PSP 设计的一款视频转换工具，工具内预设了 10 个转换标准，你只需要简单的选择视频源，然后点击<br />
Convert ，工具即可为你转换出 PSP 所支持的 H264 视频编码、AAC 音频编码、480×272 分辨率的 mp4 格式的视频了，当然了还有其他的标准可选，同时工具还会为你自动生成一张缩略图以供 PSP 显示，完全做到了傻瓜化。</p>
<p>它安装十分简单，首先安装软件所需的依赖包dependencies:<br />
<code>sudo apt-get install nasm libfaac-dev libxvidcore-dev libgtk2.0-dev liba52-dev</code><br />
然后到官方主页下载最新的0.3.0的 tar 包。 PSPVC 的官方主页在这里：<a href="http://pspvc.sourceforge.net/" target="_blank">http://pspvc.sourceforge.net/</a>，或者<a href="http://prdownloads.sourceforge.net/pspvc/pspvc-install-0.3.tar.gz?download" target="_blank">点击这里下载</a>。下载之后解压。<br />
<code>tar zxvf pspvc-install-0.3.tar.gz</code><br />
进入目录执行安装<br />
<code>sudo ./install.sh</code><br />
安装完后，在主菜单&#8212;应用程序&#8212;影音中就可以找到 PSPVC 了，转换实在是无比的傻瓜化，就不讲解了。唯一的缺点是这个软件转换的速度偏慢了一些，不过聊胜于无。</p>
<p>我们来看看截图。<br />
<a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/pspvc01.png" title="pspvc01.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/pspvc01.png" alt="pspvc01.png" /></a><br />
<a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/pspvc02.png" title="pspvc02.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/pspvc02.png" alt="pspvc02.png" /></a></p>
<p>下面介绍另一个软件 PSP Manager，这是一个管理类的软件，专门用来管理 PSP 里的游戏/ISO/存档的工具（看来老外也玩盗版啊<img src="http://www.oceanboo.cn/images/emot/grin.gif" alt="grin" border="0" />）.</p>
<blockquote><p>QPSPManager is a PBP File manager for Linux. It&#8217;s intended to use as a user friendly GUI to the known tedious pack and unpack processes of the PSP PBP files, directory generation and further copy into the PSP, in order to execute those binary files in PSPs with firmware 1.50.<br />
QPSPManager automates this process to make it a simple task to the end user, who will only have to select a PBP file and the PSP directory, leaving all other tasks to the program. It also provides some other cool features such as selecting custom PNG, PMF and AT3 files to use as an icon or background in the PSP menu.</p>
<p>QPSPManager also allows the user to backup the savegames to the computer and copy those savegames later to the PSP.</p></blockquote>
<p>由于这个软件一看就是 KDE 下的软件，至于那一堆的依赖包，我是看都懒得看了，直接不装，因为这个软件对我来说基本上也没什么用处，安装的方法如下：<br />
1. First you need to install the dependencies:<br />
<code>sudo apt-get install qt3-dev-tools libqt3-mt-dev</code><br />
2. Open a terminal, go to uncompressed directory then in the src directory<br />
<code>cd ~/Desktop/qpspmanager-1.3/src</code><br />
3. Then you need to compile and install the program:</p>
<p><code>qmake<br />
make<br />
sudo make install</code><br />
QPSPManager 主页在这里：<a href="http://qpspmanager.sourceforge.net/" target="_blank">http://qpspmanager.sourceforge.net/</a>，或者<a href="http://downloads.sourceforge.net/qpspmanager/qpspmanager-2.0.2.tar.gz" target="_blank">点击这里下载</a>。</p>
<p>截图就看看官方截图吧。</p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager01.png" title="qpspmanager01.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager01.png" alt="qpspmanager01.png" /></a></p>
<p>你看那老外都不好意思了，把信息模糊掉了，哈哈。</p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager02.png" title="qpspmanager02.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager02.png" alt="qpspmanager02.png" /></a></p>
<p>好多熟悉的游戏存档，LocoRoco、山脊赛车、音乐方块、水银、EXIT等等。<br />
<a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager03.png" title="qpspmanager03.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager03.png" alt="qpspmanager03.png" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager04.png" title="qpspmanager04.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/qpspmanager04.png" alt="qpspmanager04.png" /></a><br />
参考地址： <a href="https://help.ubuntu.com/community/PSP" target="_blank">https://help.ubuntu.com/community/PSP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/09/22/some-psp-tools-on-linux.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Linux Girl！看你认识几个？</title>
		<link>http://linuxdesktop.cn/2007/09/20/linux-girls.html</link>
		<comments>http://linuxdesktop.cn/2007/09/20/linux-girls.html#comments</comments>
		<pubDate>Thu, 20 Sep 2007 07:59:57 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[精彩推荐]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/09/20/linux-girls</guid>
		<description><![CDATA[在 yupoo 相册折腾我的照片的时候，无意中瞧到了一些 LinuxGirl 的图片，于是在网上东搜搜西找找，后来终于让我找到了应该算完整的一套 LinuxGirl 的照片，发上来大伙瞧瞧。
分别代表谁就不说... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_archlinux.jpg" title="linuxgirls_archlinux.jpg"></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_debian.jpg" title="linuxgirls_debian.jpg"></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_fedora.jpg" title="linuxgirls_fedora.jpg"></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_knoppix.jpg" title="linuxgirls_knoppix.jpg"></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_mandriva.jpg" title="linuxgirls_mandriva.jpg"></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_ubuntu.jpg" title="linuxgirls_ubuntu.jpg"></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_all.jpg" title="linuxgirls_all.jpg"></a><img align="left" width="109" src="http://linuxdesktop.cn/logo/linux.png" height="120" style="width: 109px; height: 120px" />在 yupoo 相册折腾我的照片的时候，无意中瞧到了一些 LinuxGirl 的图片，于是在网上东搜搜西找找，后来终于让我找到了应该算完整的一套 LinuxGirl 的照片，发上来大伙瞧瞧。</p>
<p>分别代表谁就不说了，让大伙来自己看。</p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_linux.jpg" title="linuxgirls_linux.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_linux.jpg" alt="linuxgirls_linux.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_archlinux.jpg" title="linuxgirls_archlinux.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_archlinux.jpg" alt="linuxgirls_archlinux.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_debian.jpg" title="linuxgirls_debian.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_debian.jpg" alt="linuxgirls_debian.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_fedora.jpg" title="linuxgirls_fedora.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_fedora.jpg" alt="linuxgirls_fedora.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_gentoo.jpg" title="linuxgirls_gentoo.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_gentoo.jpg" alt="linuxgirls_gentoo.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_knoppix.jpg" title="linuxgirls_knoppix.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_knoppix.jpg" alt="linuxgirls_knoppix.jpg" /></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_mandriva.jpg" title="linuxgirls_mandriva.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_mandriva.jpg" alt="linuxgirls_mandriva.jpg" /></a><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_redhat.jpg" title="linuxgirls_redhat.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_redhat.jpg" alt="linuxgirls_redhat.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_slackware.jpg" title="linuxgirls_slackware.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_slackware.jpg" alt="linuxgirls_slackware.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_suse.jpg" title="linuxgirls_suse.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_suse.jpg" alt="linuxgirls_suse.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_ubuntu.jpg" title="linuxgirls_ubuntu.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_ubuntu.jpg" alt="linuxgirls_ubuntu.jpg" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_all.jpg" title="linuxgirls_all.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/09/linuxgirls_all.jpg" alt="linuxgirls_all.jpg" /></a></p>
<p> 此套作品<a target="_blank" href="http://juzo-kun.deviantart.com/"><font color="#336600">作者的主页在这里</font></a>，在里面可以查看1024×768的桌面壁纸。</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/09/20/linux-girls.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>如何增加系统Swap分区</title>
		<link>http://linuxdesktop.cn/2007/08/10/add-swap-partition.html</link>
		<comments>http://linuxdesktop.cn/2007/08/10/add-swap-partition.html#comments</comments>
		<pubDate>Fri, 10 Aug 2007 10:24:18 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[安装配置]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/08/10/add-swap-partition</guid>
		<description><![CDATA[在这篇日志安装Oracle 10g XE on Debian/Ubuntu中，在 apt 安装 oracle-xe-client 时，有可能会出现如下的错误，提示 Swap 分区没有达到要求的大小，安装无法继续。
 引用
This system does not meet the minimum require... ]]></description>
			<content:encoded><![CDATA[<p><img src="/logo/linux.png" align="left" height="84" width="75" />在这篇日志<a href="http://www.oceanboo.cn/read.php/160.htm">安装Oracle 10g XE on Debian/Ubuntu</a>中，在 apt 安装 oracle-xe-client 时，有可能会出现如下的错误，提示 Swap 分区没有达到要求的大小，安装无法继续。</p>
<blockquote><p> 引用<br />
This system does not meet the minimum requirements for swap space.  Based on the amount of physical memory available on the system, Oracle Client 10g Express Edition requires 1024 MB of swap space. This system has 951 MB of swap space.  Configure more swap space on the system and retry the installation.</p></blockquote>
<p>下面我们就来增加系统的 Swap 大小。</p>
<p>1.首先用命令free查看系统内 Swap 分区大小。<br />
<code>free -m</code></p>
<blockquote><p>引用</p>
<p>total       used       free     shared    buffers     cached<br />
Mem:          1002        964         38          0         21        410<br />
-/+ buffers/cache:        532        470<br />
Swap:          951         32        929</p></blockquote>
<p>可以看到 Swap 只有951M，不符合 Oracle-xe-client 的安装要求。</p>
<p>2.创建一个 Swap 文件。<br />
<code>mkdir swap<br />
cd swap<br />
sudo dd if=/dev/zero of=swapfile bs=1024 count=100000</code></p>
<p>出现下列提示，上面命令中的 count 即代表swap文件大小。</p>
<blockquote><p> 引用<br />
记录了 100000+0 的读入<br />
记录了 100000+0 的写出<br />
102400000 字节 (102 MB) 已复制，0.74704 秒，137 MB/秒</p></blockquote>
<p>把生成的文件转换成 Swap 文件<br />
<code>sudo mkswap swapfile</code></p>
<blockquote><p>引用<br />
Setting up swapspace version 1, size = 102395 kB<br />
no label, UUID=09fde987-5567-498a-a60b-477e302a988b</p></blockquote>
<p>3.激活 Swap 文件。<br />
<code>sudo swapon swapfile</code></p>
<p>再次查看 free -m 的结果。</p>
<blockquote><p>引用<br />
total       used       free     shared    buffers     cached<br />
Mem:          1002        967         34          0         22        410<br />
-/+ buffers/cache:        534        467<br />
Swap:         1053        32       1021</p></blockquote>
<p>添加成功。</p>
<p>扩展：<br />
如果需要卸载这个 swap 文件，可以进入建立的 swap 文件目录。执行下列命令。<br />
<code>sudo swapoff swapfile</code></p>
<p>如果需要一直保持这个 swap ，可以把它写入 /etc/fstab 文件。</p>
<blockquote><p>引用<br />
swapfilepath               swap                    swap    defaults        0 0</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/08/10/add-swap-partition.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>超快的电驴下载工具（还能下BT）──MLdonkey</title>
		<link>http://linuxdesktop.cn/2007/07/31/mldonkey.html</link>
		<comments>http://linuxdesktop.cn/2007/07/31/mldonkey.html#comments</comments>
		<pubDate>Tue, 31 Jul 2007 12:03:44 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[网络相关]]></category>
		<category><![CDATA[bt]]></category>
		<category><![CDATA[emule]]></category>
		<category><![CDATA[mldonkey]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/07/31/mldonkey</guid>
		<description><![CDATA[曾多次在网上看到有人推荐mldonkey，但还是没有去装过，最近mldonkey又更新了一个新版本，网上又是大量的推荐。于是，我沦陷了，哈哈，安装了一把来试试，套用一句俗到不能再俗的话来说，... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.oceanboo.cn/attachment/mldonkey_logo.png" align="left" height="155" width="147" />曾多次在网上看到有人推荐<a href="http://mldonkey.sourceforge.net/Main_Page" target="_blank">mldonkey</a>，但还是没有去装过，最近<a href="http://mldonkey.sourceforge.net/Main_Page" target="_blank">mldonkey</a>又更新了一个新版本，网上又是大量的推荐。于是，我沦陷了，哈哈，安装了一把来试试，套用一句俗到不能再俗的话来说，那就是“不用不知道，一用吓一跳。”真没想到ED2K的软件还能跑成这样的。</p>
<p>安装的方法和推荐可以看：<br />
<a href="http://forum.ubuntu.org.cn/about42337.html" target="_blank">[推荐]速度最快的电驴——mldonkey 07/07/29 更新</a><br />
<a href="http://www.hebine.com/blog/archives/255.html" target="_blank">Linux超强电驴–Mldonkey</a></p>
<p>安装的方法网上都一大堆了，我也就不再多说了，只说说几个设置的地方，具体参数在什么地方设置，参见上面两篇日志。<br />
1. 下面这两个设置，按上面两篇文章来说，都建议勾上。但是我个人建议，如果你确认你是内网低ID用户（就像我一样），那么前两个最好都不要选，因为一旦勾上 这两个选项，你就很难连上服务器了，特别是DS的服务器。当然你有公网IP，是高ID用户，或者你能做端口映射的，那就另当别论，勾上他们才是正确的选 择。</p>
<blockquote><p>ED2K-force_client_high_id<br />
ED2K- force_high_id</p></blockquote>
<p>2.ED2K- max_connected_servers，这个参数默认是3，修改成10也就差不多了。因为设置大了也没用，最后一般稳定下来后都保持在5个左右。这点也是mldonkey比较快的原因吧，可以连接多个donkey服务器。</p>
<p>3.添加我们常用的服务器，在Sancho的服务器Server界面中点击带+的地球图标的按钮来添加一个server.met，比如我们常用的http://www.emule.org.cn/server.met</p>
<p>4.在首选项的Main中设置你的Nickname为[CHN][VeryCD]yourname的样子，yourname可以替换为自己喜欢的名字。</p>
<p>5.可以在首选项的bandwidth那里按照你的实际网络情况修改一下，比如1Mbps的宽带，下载可以设置为128（不保证网页浏览速度哦）。</p>
<p>安装支持MLdonkey/eMule/aMule的Firefox扩展<a href="http://www.informatik.uni-oldenburg.de/%7Edyna/mldonkey/" target="_blank">mldonkey_protocol_handler</a><br />
在Mldonkey的压缩包里自带了一个Firefox扩展，在压缩包的ed2k_mozilla目录有一个mldonkey_protocol_handler-2.1.xpi文件，直接用firefox打开它就可以装上了。<br />
如果顺利的话，点击ed2k链接就可以关联到mldonkey了。<br />
假如出现了类似“Firefox没有注册Ed2k协议”等信息，你可以按下面的方法来解决。<br />
1.打开about:config，看看里面是否有下面两项参数。</p>
<blockquote><p>network.protocol-andler.external.ed2k<br />
network.protocol-handler.app.ed2k</p></blockquote>
<p>2.如果有，请直接选中他们，再单击右键，接着点击“重置”，两项逐一重置。</p>
<p>3. 接着就可以用Firefox点击ed2k链接关联到mldonkey了，其实这个扩展还可以关联到eMule/aMule的。对了，点击链接前确认 mldonkey已经启动，这个扩展不能象在windows的Firefox一样，点击ed2k链接会自动激活eMule。</p>
<p>下面看看我的一张截图，这张截图可以看到高峰的时候达到了120K左右的样子，截图的时候是40多k，是因为mldonkey抢占了大部分带宽，网页变慢，于是我设置了低速网络，把速度限制下来的样子，如果不做限制，直接就飙到120K去了，理论峰值。<span style="color: #0000ff">要知道，我这里只是1Mbps的宽带，而且我只是内网，低ID的用户哦</span>，顺便提示，我只是下的<a href="http://lib.verycd.com/2005/10/26/0000071369.html" target="_blank">《偷心》</a>这部电影，源应该不是很多吧，呵呵。</p>
<p><img src="http://www.oceanboo.cn/attachment/mldonkey01.png" width="640" /></p>
<p>官方网站：<br />
MLdonkey： <a href="http://mldonkey.sourceforge.net/Main_Page" target="_blank">http://mldonkey.sourceforge.net/Main_Page</a><br />
Sancho：<a href="http://sancho-gui.sourceforge.net/" target="_blank">http://sancho-gui.sourceforge.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/07/31/mldonkey.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>安装日程管理软件Sunbird</title>
		<link>http://linuxdesktop.cn/2007/07/24/sunbird.html</link>
		<comments>http://linuxdesktop.cn/2007/07/24/sunbird.html#comments</comments>
		<pubDate>Tue, 24 Jul 2007 12:49:07 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[酷玩软件]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[Sunbird]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/07/24/sunbird</guid>
		<description><![CDATA[ 最近工作比较轻松，时间比较空余，不太想把时间浪费在浏览网页上，希望能好好学点什么东西，所以要做一些计划，于是想找一款日程管理的软件，搜寻了一番， 最后还是看上了早就看上了... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/sunbird_logo.png" title="sunbird_logo.png" alt="sunbird_logo.png" align="left" /> 最近工作比较轻松，时间比较空余，不太想把时间浪费在浏览网页上，希望能好好学点什么东西，所以要做一些计划，于是想找一款日程管理的软件，搜寻了一番， 最后还是看上了早就看上了的Mozilla Sunbird（典型的爱屋及乌，Mozilla的东西主流的差不多都用了个遍了，<a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a>、<a href="http://www.mozilla.com/en-US/thunderbird/" target="_blank">Thunderbird</a>、<a href="http://www.mozilla.org/projects/calendar/sunbird/" target="_blank">Sunbird</a>、<a href="http://www.bugzilla.org/" target="_blank">Bugzilla</a>）。</p>
<p><a href="http://www.mozilla.org/projects/calendar/sunbird/" target="_blank">Sunbird</a>现在还没有中文版本，汉化也只有0.3.1，我装了最新的0.5，一个日程管理软件，没有中文也可以看懂了。</p>
<p><a href="http://www.mozilla.org/projects/calendar/sunbird/" target="_blank">Sunbird</a>是不需要安装的，<a href="http://www.mozilla.org/projects/calendar/sunbird/download.html" target="_blank">点击这里进入下载页面</a>，下载好tar包之后，直接解压到任意地方，就可以执行目录里的可执行脚本sunbird运行程序了。我选择的位置是在/opt下。</p>
<p>我们可以做一个软链接到/usr/bin目录。<br />
<code>sudo ln -s /opt/sunbird/sunbird /usr/bin/sunbird</code><br />
执行下列命令添加一个主菜单的快捷方式。<br />
<code>sudo gedit /usr/share/applications/sunbird.desktop</code><br />
添加如下内容，就会在应用程序&#8212;-办公里面找到Sunbird Calendar了。</p>
<blockquote><p>[Desktop Entry]<br />
Name=Sunbird Calendar<br />
Comment=Sunbird Calendar<br />
Exec=sunbird<br />
Terminal=false<br />
Type=Application<br />
Icon=/opt/sunbird/icons/mozicon128.png<br />
Categories=Office;</p></blockquote>
<p>下面看看我的截图。</p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/sunbird01.png" title="sunbird01.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/sunbird01.png" title="sunbird01.png" alt="sunbird01.png" width="640" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/07/24/sunbird.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>SS模拟器──yabause在ubuntu下的安装配置</title>
		<link>http://linuxdesktop.cn/2007/07/12/ss-emulator-on-ubuntu.html</link>
		<comments>http://linuxdesktop.cn/2007/07/12/ss-emulator-on-ubuntu.html#comments</comments>
		<pubDate>Thu, 12 Jul 2007 11:13:23 +0000</pubDate>
		<dc:creator>oceanboo</dc:creator>
				<category><![CDATA[游戏娱乐]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[game]]></category>

		<guid isPermaLink="false">http://linux.lupaworld.com/2007/07/12/ss-emulator-on-ubuntu</guid>
		<description><![CDATA[在以前的日志，写过街机模拟器&#8212;&#8212;gxmame在ubuntu上的安装配置 、写过PS模拟器&#8212;&#8212;ePSxe在Ubuntu下的安装配置 ，今天加上一个SS模拟器&#8212;-yabause在ubuntu下的安装配置。
原来次世代游... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause_logo.jpg" title="yabause_logo.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause_logo.jpg" title="yabause_logo.jpg" alt="yabause_logo.jpg" align="left" /></a>在以前的日志，写过<a href="http://www.oceanboo.cn/read.php/97.htm" target="_blank">街机模拟器&#8212;&#8212;gxmame在ubuntu上的安装配置</a> 、写过<a href="http://www.oceanboo.cn/read.php/92.htm" target="_blank">PS模拟器&#8212;&#8212;ePSxe在Ubuntu下的安装配置</a> ，今天加上一个SS模拟器&#8212;-yabause在ubuntu下的安装配置。</p>
<p>原来次世代游戏机盛行的时候，基本上是看不上SS的，根本没有什么力作，看得上眼的也就是那么两三个游戏（格兰蒂亚、公主的皇冠、骨头先生）。那这次是为什么要装一个SS的模拟器来玩呢？有两个原因：</p>
<p>一 是一直想回顾一下古墓丽影一代（这是让我一直很怀念的一款游戏，记住，只是一代），但是PS版本的镜像怎么都没找到，反而让我找到SS版本的镜像了，所以 弄一个SS的模拟器来回顾一下这款游戏。二是因为在电驴上闲逛的时候，居然发现了“摄影棚”这款游戏，这款游戏当年还是口馋了好久，但是一直没有玩上的游 戏啊，听说比“野X拳”好玩多了。嘘，别问我这是什么游戏。</p>
<p>软件的安装十分简单，先在本站下载编译好的安装包。</p>
<p><a href="http://www.oceanboo.cn/attachment/yabause/yabause_0.8.0_i386.deb">点击这里下载文件</a></p>
<p>因为有可能会出现依赖关系， yabause依赖于libgtkglext1，所以可以apt安装好libgtkglext1包，再执行命令安装yabause的包</p>
<p><code>sudo apt-get install libgtkglext1<br />
sudo dpkg -i yabause_0.8.0_i386.deb</code></p>
<p>安装好之后，就可以通过应用程序&#8212;游戏&#8212;-yabause打开了。</p>
<p>同PS的模拟器一样，SS的模拟器Yabause也是需要BIOS文件的，本站提供三个地区版本的下载，针对不同地区发行的游戏要用对应地区的BIOS文件。<br />
<a href="http://www.oceanboo.cn/attachment/yabause/Saturn_Bios_Japan.zip" target="_blank">Saturn_Bios_Japan.zip</a><br />
<a href="http://www.oceanboo.cn/attachment/yabause/Saturn_Bios_Euro.zip" target="_blank">Saturn_Bios_Euro.zip</a><br />
<a href="http://www.oceanboo.cn/attachment/yabause/Saturn_Bios_US.zip" target="_blank">Saturn_Bios_US.zip</a><br />
菜单栏的Yabause&#8212;首选项，可以对yabause进行设置，具体设置看下面的截图，主要就是General和Video，Input似乎不支持手柄（未测试）。</p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause01.png" title="yabause01.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause01.png" alt="yabause01.png" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause02.png" title="yabause02.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause02.png" alt="yabause02.png" /></a></p>
<p>下面是几个游戏的启动画面截图。</p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause03.png" title="yabause03.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause03.png" alt="yabause03.png" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause04.png" title="yabause04.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause04.png" alt="yabause04.png" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause05.png" title="yabause05.png"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause05.png" alt="yabause05.png" /></a></p>
<p><a href="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause06.jpg" title="yabause06.jpg"><img src="http://linuxdesktop.cn/wp-content/uploads/2007/07/yabause06.jpg" alt="yabause06.jpg" /></a></p>
<p>PS：鉴于SS的失败，跟着现在模拟器上也不如同时代的对手PS的模拟器。SS模拟器也不少，但是没几个得到好评的，而且基本上没有For Linux版本，找了很久也才发现yabause是跨平台的，有For Linux版本。<br />
感觉yabause效率也很低下，玩古墓丽影简直就是看幻灯片，失望。不过还好2D游戏还算好。windows版本也差不多效果。</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxdesktop.cn/2007/07/12/ss-emulator-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
