<?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>Terrysco&#039;s Blog &#187; Linux/Shell/DB</title>
	<atom:link href="http://www.terrysco.com/node/category/linuxshelldb/feed" rel="self" type="application/rss+xml" />
	<link>http://www.terrysco.com</link>
	<description>仅关注于互联网行业， Linux平台开发。</description>
	<lastBuildDate>Sat, 22 May 2010 10:50:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SDLMAME的家用机模式</title>
		<link>http://www.terrysco.com/node/sdlmame-cheat.html</link>
		<comments>http://www.terrysco.com/node/sdlmame-cheat.html#comments</comments>
		<pubDate>Tue, 02 Feb 2010 12:07:28 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[sdlmame]]></category>
		<category><![CDATA[xmame]]></category>

		<guid isPermaLink="false">http://www.terrysco.com/?p=311</guid>
		<description><![CDATA[今天看到一个新的neogeo的bios，点击这里可以下载。运行sdlmame的时候可以指定一个bios，比如
sdlmame -bios uni-bios_2_0 kof98
启动后即可设置是否采用家用机模式，如果还想设置下次进入这个bios的界面时候ABC三键一起按（是游戏中的ABC，不是键盘）。另外游戏中可以同时按下1P的开始键和投币键，即可调出来一个作弊菜单。
如果你同时按下ABC时键盘冲突，可以参考我的另外一篇文章：
XMAME热键设置
最后，如果嫌每次都输入-bios选项麻烦，可以手动加一个alias，编辑.bashrc文件，加入一行：
alias sdlmame=&#8217;sdlmame -bios uni-bios_2_0&#8242;
source .bashrc
以后只要运行sdlmame kof98就可以了。
enjoy mame games!
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/sdlmame-cheat.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>firefox3.5关联amule</title>
		<link>http://www.terrysco.com/node/firefox3-amule.html</link>
		<comments>http://www.terrysco.com/node/firefox3-amule.html#comments</comments>
		<pubDate>Wed, 30 Dec 2009 05:28:30 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.terrysco.com/?p=309</guid>
		<description><![CDATA[自从firefox3.5和amule不能通过常规办法关联后，就一直借助opera做下载的跳转，今天看到一个老外用的办法，试了下可行，分享给各位。
$ gconftool-2 -t string -s /desktop/gnome/url-handlers/ed2k/command &#8220;/usr/bin/ed2k %s&#8221;
$ gconftool-2 -t bool -s /desktop/gnome/url-handlers/ed2k/needs_terminal false
$ gconftool-2 -t bool -s /desktop/gnome/url-handlers/ed2k/enabled true
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/firefox3-amule.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql的一些问题总结</title>
		<link>http://www.terrysco.com/node/mysql-tips.html</link>
		<comments>http://www.terrysco.com/node/mysql-tips.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 15:23:25 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.terrysco.com/?p=269</guid>
		<description><![CDATA[最近时间比较多，决定花些时间深入研究下mysql，尤其是性能和高负载站点的优化问题。不可避免的再次察漏补缺下基础知识，还是发现一些以前忽略的小细节，正可谓温故知新。

使用alter语句修改表的时候，change和modify都可以修改表的定义，不同的是change后面需要写两次列名，但可以修改列名，而modify则不行。
insert语句一个很好的特性：可以一次插入多条记录。格式为：insert into table (field 1, &#8230; , fieldn) values (value1, &#8230; , valuen), (value1, &#8230; , valuen); 这个特性在插入大量记录时，节省很多网络开销，大大提高效率。
其实查询Mysql安装后自带的帮助文档是很方便的，在提示符中键入 ? contents，根据结果依次使用问号操作符做进一步查询，即可获得详细信息。
Blob和text类型会引起一些性能问题，尤其是删除了大量记录的时候。应该使用optimize table功能进行碎片整理。
MyISAM引擎建议使用固定长度的数据列代替可变长度的数据列，而innodb引擎建议使用varchar类型，因为char平均占用空间多于varchar。
可以使用合成索引来提高大文本字段的查询性能，在表的设计中多一个字段，用来存储大文本的md5值，精确匹配大文本查询的时候可以利用该文本的md5值进行查询，以减少I/O，提高查询效率。

]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/mysql-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sdlmame设置</title>
		<link>http://www.terrysco.com/node/sdlmame.html</link>
		<comments>http://www.terrysco.com/node/sdlmame.html#comments</comments>
		<pubDate>Sun, 05 Jul 2009 07:32:24 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sdlmame]]></category>

		<guid isPermaLink="false">http://www.terrysco.com/?p=211</guid>
		<description><![CDATA[Linux平台的模拟器xmame已经停止更新，arch源里面已经没有xmame包了，不过我们可以使用sdlmame将模拟游戏继续进行到底。
安装很简单，sudo powerpill -S sdlmame，安装完成后执行一次会在用户目录生成配置文件$HOME/.mame/mame.ini，编辑这个配置文件，将rompath设置为自己本地游戏rom目录，比如我的设置为$HOME/games/mame。将window属性设置为1,就不会全屏了（对于宽屏的本本，全屏不是很舒服）。
以前的roms大都不能用了，版本太老，我们可以去romkeeper， http://romkeeper.com/下载最新的rom文件，另外，热键的设置可以参考：
热键设置
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/sdlmame.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>vbox3.0开启3D加速</title>
		<link>http://www.terrysco.com/node/vbox-3d.html</link>
		<comments>http://www.terrysco.com/node/vbox-3d.html#comments</comments>
		<pubDate>Fri, 03 Jul 2009 06:35:11 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[vbox]]></category>

		<guid isPermaLink="false">http://www.terrysco.com/?p=209</guid>
		<description><![CDATA[我的arch还是用vbox安装了一个xp系统，用来网银或者游戏。之前玩QQ的桌球游戏，提示没有directx支持，前天看到vbox3.0发布，支持3d加速，赶紧更新了试试发现还是不行。后来问问google大叔，他告诉我需要以安全模式登录你的xp系统，重新安装一次那个“增强功能”，重启后就OK了。
目前我的vbox安装了三个系统，xp，freebsd和一个嵌入式系统。感觉vbox还是很不错的，给xp分配1G内存，速度还是很快的。
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/vbox-3d.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何使用Linux</title>
		<link>http://www.terrysco.com/node/linux-beginner.html</link>
		<comments>http://www.terrysco.com/node/linux-beginner.html#comments</comments>
		<pubDate>Mon, 29 Jun 2009 20:27:55 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=99</guid>
		<description><![CDATA[<p>前几天去了某知名大公司看看，题目很简单，主要是考察覆盖面。linux，css，javascript，php和python都有考到，不过题目比较简单。10分钟就递给旁边的面试官了，看来技术方面还是过关了。对方详细描述了下他们的开源应用，因为这个公司是在国际上因大量使用开源技术闻名的。大部分考察还是基于linux的应用，shell编程和linux工具。</p><p>虽然过程比较顺利，还是让我反省了。使用linux桌面这么多年，对linux很多机制还是初学者阶段，用SHELL能做到什么程度？也就是一般的文件管理而已。shell脚本加起来也写过不到2000行，于是抽空还是拿出来家里那本06年在中关村买的Linux高级程序设计，还需要一段时间积累。</p>...
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/linux-beginner.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHPEclipse：A User Guide</title>
		<link>http://www.terrysco.com/node/php-eclipse-user-guide.html</link>
		<comments>http://www.terrysco.com/node/php-eclipse-user-guide.html#comments</comments>
		<pubDate>Fri, 19 Jun 2009 05:39:53 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=98</guid>
		<description><![CDATA[<p>今天看到一本好书：《PHPEclipse：A User Guide》，着重对phpeclipse这个插件进行介绍，此类资料中这个算是比较详细，三种平台都有介绍（Linux，Mac，Windows）。对Quantum DB Plug-In也有介绍，唯一&#8220;不好&#8221;的地方就是：晦涩的单词太多，不知道我辈的英文水平不是很好啊。。借助翻译工具还是硬着头皮看下来了，200多页，其中还有部分插图，花费3个小时，还算值得。</p><p>&#160;</p><p>推荐给想用eclipse做php开发的朋友，熟练后就不必使用收费的zend studio了。</p>...
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/php-eclipse-user-guide.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>ArchLinux下常用软件</title>
		<link>http://www.terrysco.com/node/archlinux-software.html</link>
		<comments>http://www.terrysco.com/node/archlinux-software.html#comments</comments>
		<pubDate>Fri, 15 May 2009 17:15:19 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=94</guid>
		<description><![CDATA[<p>本人的桌面环境是ArchLinux + Gnome，以下介绍的软件源里面差不多都有。装完xorg和gnome后，差不多就要装这些了，没关系可以一边做事一边安装。一些gnome相关的东西有gnome-network-manager, eog, evince, file-roller, gnome-terminal &#38;etc.</p><p>网络相关：</p><ul>    <li>firefox 3（地球人都用），装上几个插件，做web开发都能对付了。</li>    <li>gajim,pidgin,skype,linuxqq 这几个差不多满足了所有IM需求了。</li>    ...</ul>
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/archlinux-software.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>x200上archlinux的安装</title>
		<link>http://www.terrysco.com/node/x200-archlinux.html</link>
		<comments>http://www.terrysco.com/node/x200-archlinux.html#comments</comments>
		<pubDate>Mon, 11 May 2009 06:42:38 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[x200]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=93</guid>
		<description><![CDATA[<p>今天拿到x200本本了，赶紧装上了archlinux。down的是09年2月的新iso，一路上安装没有什么问题。唯一麻烦的问题就是在daemon里面忘记加上hal了，导致在gdm界面的时候鼠标和键盘失效。在grub菜单编辑加上linux single后以单用户模式启动，重新修改rc.conf文件就搞定了。无线驱动用的源里面的iwlwifi-5000-ucode，又花掉半个小时安装软件和开发环境，两个字：霸道！</p><p>体验了下，速度很快，没有问题。快捷键也都驱动了，网络工作正常。</p>...
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/x200-archlinux.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>eclipse相关文章汇总</title>
		<link>http://www.terrysco.com/node/eclipse-config.html</link>
		<comments>http://www.terrysco.com/node/eclipse-config.html#comments</comments>
		<pubDate>Thu, 07 May 2009 21:24:59 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Shell/DB]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=92</guid>
		<description><![CDATA[<p>1. 自动换行插件安装。</p><p>http://blog.zol.com.cn/684/article_683650.html</p><p>&#160;</p><p>to be continued...</p>
]]></description>
		<wfw:commentRss>http://www.terrysco.com/node/eclipse-config.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
