<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>杂乱的书桌 &#187; linux</title>
	<atom:link href="http://www.quhuashuai.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quhuashuai.com</link>
	<description>我学习，我思考，我记录</description>
	<lastBuildDate>Fri, 17 Apr 2009 18:25:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>zh-cn</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>2007-2008 </copyright>
		<managingEditor>quhuashuai@gmail.com (杂乱的书桌)</managingEditor>
		<webMaster>quhuashuai@gmail.com (杂乱的书桌)</webMaster>
		<category>posts</category>
		<ttl>1440</ttl>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>我学习，我思考，我记录</itunes:summary>
		<itunes:author>杂乱的书桌</itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name>杂乱的书桌</itunes:name>
			<itunes:email>quhuashuai@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.quhuashuai.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.quhuashuai.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>杂乱的书桌</title>
			<link>http://www.quhuashuai.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Archlinux下给T43添加Win键(Super键)</title>
		<link>http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/</link>
		<comments>http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 16:17:18 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=342</guid>
		<description><![CDATA[为了使用FVWM的需要，Super键，或者说Windows键是必不可少的，可是自己的T43上面只有两个Alt键，所以比较可行的选择就是把右边那个变成Windows键。本来很久之前就已经搞定了，只是最近的一次升[...]]]></description>
			<content:encoded><![CDATA[<p>为了使用FVWM的需要，Super键，或者说Windows键是必不可少的，可是自己的T43上面只有两个Alt键，所以比较可行的选择就是把右边那个变成Windows键。本来很久之前就已经搞定了，只是最近的一次升级之后，不知道为什么以前的修改失效了，花了点时间改好之后特意记录下来。以前的修改是靠xkeycaps自动完成的，但是估计这个程序是很久以前的，里面有的键盘种类比较少，这次我怎么改都没有成功，所以才开始动手自己寻找解决办法。</p>
<p><span style=" font-size:large;">需要的工具：</span></p>
<p>只需要xev以及xmodmap就可以搞定，我不确定是不是系统自带的，如果没有的话，使用pacman或者yaourt自己装一下就好了。</p>
<p><span style=" font-size:large;">修改原理：</span></p>
<p>这个修改的工作是由xmodmap完成的，它的功能就是完成键盘的物理键映射到计算机内部的逻辑键，也就是说，如果你愿意，你可以修改任意的按键，完全打乱键盘的次序都没有关系。xmodmap完成键映射的命令格式是： <em>xmodmap -e &#8220;keycode NUMBER = KEYNAME&#8221;</em> 。其中 <em>keycode</em> 是关键字， <em>NUMBER</em> 是键的编号，也即物理名称， <em>KEYNAME</em> 是逻辑名称，即计算机内部把序号为 <em>NUMBER</em> 的键当 <em>KEYNAME</em> 处理。如果需要的话可以可以直接<em>man xmodmap </em>查看。</p>
<p>另外我们可以把我们所做的修改写入配置文件当中，比如常用的 <em>~/.Xmodmap</em>，同时我们只需要修改 <em>~/.xinitrc</em>文件，加入<em>xmodmap ~/.Xmodmap </em>这条语句，这样在我们每次启动X之后，你所希望的配置就已经启用了。当然配置文件当中还有一些类似remove和add的语句，很容易理解，大家可以看下后面的过程。</p>
<p><span style=" font-size:large;">修改步骤:</span></p>
<p>因为我个人想要把右边的Alt键修改为Super键，所以后面的步骤当中都是在这个基础之上的。</p>
<ul>
<li >在命令行下输入xev，然后在跳出的那个小窗口当中按下右侧的Alt键（或者任何你想要修改的按键），观察终端下面出现的提示信息，在这里我们可以找到<em>keycode NUMBER</em>以及<em>KEYNAME，</em>在我这里输出信息为：</li>
</ul>
<p><code> KeyRelease event, serial 35, synthetic NO, window 0x3800001, root 0x82, subw 0x3800002, time 6287212, (20,28), root:(42,90), state 0x40, keycode 108 (keysym 0xffec, Alt_R), same_screen YES, XLookupString gives 0 bytes: XFilterEvent returns: False </code>
<p style=" -qt-block-indent:1;">我们所需要的信息就是keycode 108，以及括号当中的Alt_R。 </p>
<ul>
<li > 我们需要查看我们当前的按键配置，在命令行下输入xmodmap，我们可以看到在mod1一行当中有Super_R, Alt_R，同时在mod4下面有Super_L，Hyper_L，知道了当前配置之后我们才可以进行修改。</li>
</ul>
<ul>
<li >接下来我们需要在$HOME目录下面建立一个.Xmodmap文件，在里面写入：</li>
</ul>
<p><code>remove Mod1 = Super_R Alt_R<br />
 remove Mod4 = Super_L Hyper_L<br />
keycode 0x6c = Super_R<br />
add Mod4 = Super_R</code> </p>
<p> 所以第一行我们把Super_R和Alt_R从当前的mod1当中删除，第二行把Super_L以及Hyper_L从当前的mod4当中删除，第三行将当前的Alt_R键映射为Super_R键，值得注意的是keycode之后的0&#215;6c其实是我们之前得到的keycode 108的16进制表示方式，最后一行便是将Super_R键加入到当前的mod4当中。</p>
<ul>
<li >这样之后我们就可以在FVWM的配置文件中，使用Mod4，也就是Super键了。不过需要说明的是，如果只是为了在fvwm当中使左右的Alt键具有不同的功能，我们需要做的只是在<em>~/.Xmodmap</em>当中将Alt_L保存在mod1当中，而将Alt_R保存在mod4中，相信这样就没有问题了，只是你要使用compiz之类的东西的话，需要Super键的存在。</li>
</ul>
<p>基本上就是这样的过程，希望能够帮上那些和我一样的新手。</p>
<blockquote></blockquote>
<blockquote></blockquote>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=342&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2009. |
<a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/">Permalink</a> |
<a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/#comments">15 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/&amp;title=Archlinux下给T43添加Win键(Super键)">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/features/" rel="tag">features</a>, <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2008/02/body-building-faq-for-man/" title="男生｜运动｜增肌｜减肥 FAQ (2008-02-01)">男生｜运动｜增肌｜减肥 FAQ</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2007/12/protect-your-teeth/" title="爱自己，从爱牙齿做起 (2007-12-31)">爱自己，从爱牙齿做起</a> (28)</li>
	<li><a href="http://www.quhuashuai.com/2008/03/how-to-do-personal-knowledge-management/" title="如何进行个人知识管理 (2008-03-29)">如何进行个人知识管理</a> (44)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/what-to-do-when-commute/" title="如何利用乘车的时间 (2008-10-05)">如何利用乘车的时间</a> (29)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/how-to-tackle-anti-study-mood/" title="如何克服暂时的厌学情绪 (2008-10-06)">如何克服暂时的厌学情绪</a> (18)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/write-dokuwiki-in-vim/" title="在vim中管理dokuwiki (2008-10-01)">在vim中管理dokuwiki</a> (4)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/" title="四个月来的第一篇文章 (2008-09-08)">四个月来的第一篇文章</a> (24)</li>
	<li><a href="http://www.quhuashuai.com/2008/04/usa-online-casinos/" title="USA Online Casinos (2008-04-04)">USA Online Casinos</a> (0)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Archlinux下启用Thinkpad功能键</title>
		<link>http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/</link>
		<comments>http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 01:39:41 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=294</guid>
		<description><![CDATA[不知道是Thinkpad的问题，还是Archlinux的问题，自从由Ubuntu换到了Archlinux之后，我的T43就没有成功搞定过Thinkpad的这些功能键，所以Fn这个键就成了个摆设，每次需要开启蓝牙或者关闭屏幕的时候[...]]]></description>
			<content:encoded><![CDATA[<p>
不知道是Thinkpad的问题，还是Archlinux的问题，自从由Ubuntu换到了Archlinux之后，我的T43就没有成功搞定过Thinkpad的这些功能键，所以Fn这个键就成了个摆设，每次需要开启蓝牙或者关闭屏幕的时候，我能做的事情就是敲一些命令，实在有点烦。今天在网上找了一些，确实是有解决办法的，而且并不复杂，我们需要做的事情就是修改/etc/acpi/handler.sh这个问题，在这里面配置下功能键对应的命令。
</p>
<p>
开始之前，先确定你已经在/etc/rc.conf里面加载了ibm_acpi这个Module。这是我们进行修改和配置的先决条件，接下里将原本的/etc/acpi/handler.sh备份一下，尽管来说很多时候并不是需要这么做，鉴于我们都是新手，防止出现意外还是备份一下比较安全。这些都搞定之后，把下面的这段代码保存为新的/etc/acpi/handler.sh。
</p>
<div class="hl-surround"><div class="hl-main">#!/bin/sh<br /># Default acpi script that takes an entry for all actions<br /><br /># NOTE: This is a 2.6-centric script.&nbsp; If you use 2.4.x, you'll have to<br />#&nbsp; &nbsp; &nbsp; &nbsp;modify it to not use /sys<br /><br />set $*<br /><br />case &quot;$1&quot; in<br />&nbsp;&nbsp; &nbsp;ibm/hotkey)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HKEY)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$4&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001002) # Lock screen<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xscreensaver-command -lock<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001003) # swithing display off<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;	xset dpms force off<br />						;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001004) # Suspend to RAM<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;/usr/sbin/pm-suspend<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001005) # Switch Bluetooth<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if [ &quot;$(grep &quot;status.*enabled&quot; /proc/acpi/ibm/bluetooth)&quot; ]; then<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &quot;disable&quot; &gt; /proc/acpi/ibm/bluetooth<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &quot;enable&quot; &gt; /proc/acpi/ibm/bluetooth<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fi<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00001007) # Toggle external display<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if [ &quot;$(xrandr -q | grep &quot;VGA connected&quot;)&quot; ]; then<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if [ &quot;$(xrandr -q | grep &quot;VGA connected [0-9]&quot;)&quot; ]; then<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xrandr --output VGA --off<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xrandr --output VGA --auto<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fi<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xrandr --output VGA --off<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fi<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001008) # Toggle Trackpoint/Touchpad<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001009) # Eject from dock<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0000100c) # Hibernate<br />						/usr/sbin/pm-hibernate<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001014) # Toggle zoom<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#00001018) # ThinkVantage button<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;#&nbsp; &nbsp; ;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp;button/lid)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;LID)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$3&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000080) # Lid opened/closed<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;grep open /proc/acpi/button/lid/LID/state || hibernate -F /etc/hibernate/ususpend-ram.conf<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp;ac_adapter)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AC)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$4&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000001) # AC plugged<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo -n performance &gt; /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000000) # AC unplugged<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo -n ondemand &gt; /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp;video)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;case &quot;$2&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;LCD0)<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;case &quot;$3&quot; in<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000086) # Brightness up<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;brightness +<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;00000087) # Brightness down<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;brightness -<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;esac<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;;;<br />esac</div></div>
<p>
在保存好之后，其实你可以根据自己的需要修改一些对应的命令，进而调整一些功能键。在我的这个配置下面，Fn+F2是使用xscreensaver锁定屏幕；Fn+F3是关闭显示屏幕；Fn+F4是挂起，这里我使用的是pm-suspend；Fn+F5是切换蓝牙的开关；Fn+F7是启动外接显示器或者投影仪之类的；Fn+F12是休眠。基本上就是这样，同时还启用了调整屏幕亮度，打开上面小灯等功能。至少在我的T43上面这些功能都没有问题。
</p>
<p>
这些都搞定之后你只需要sudo /etc/rc.d/acpi restart，重启启动acpi就好了，现在赶紧来试试看吧，那些你熟悉的功能键是不是都找回来了？
</p>
<p><i>本文主要参考<a href="http://bbs.archlinux.org/viewtopic.php?id=45710">Arch Linux Forum</a></i></p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=294&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/&amp;title=Archlinux下启用Thinkpad功能键">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a>, <a href="http://www.quhuashuai.com/tag/ubuntu/" rel="tag">ubuntu</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/" title="Ubuntu下安装matlab过程 (2007-08-15)">Ubuntu下安装matlab过程</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/" title="Archlinux中配置Okular下缺失的英文字体 (2008-10-09)">Archlinux中配置Okular下缺失的英文字体</a> (2)</li>
	<li><a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/" title="Archlinux下给T43添加Win键(Super键) (2009-04-17)">Archlinux下给T43添加Win键(Super键)</a> (15)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/" title="Archlinux下安装Matlab 2008a (2008-09-11)">Archlinux下安装Matlab 2008a</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Archlinux中配置Okular下缺失的英文字体</title>
		<link>http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/</link>
		<comments>http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 10:30:13 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[分享]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=256</guid>
		<description><![CDATA[在解决okular下面部分英文字体缺失之前，一直在用xpdf或者Acroread看pdf文档。可是在这个的同时我已经纳闷了很久，这个okular的英文字体到底是怎么个机制来查找的，试图修改过xpdfrc，没有任何[...]]]></description>
			<content:encoded><![CDATA[<p>在解决okular下面部分英文字体缺失之前，一直在用xpdf或者Acroread看pdf文档。可是在这个的同时我已经纳闷了很久，这个okular的英文字体到底是怎么个机制来查找的，试图修改过xpdfrc，没有任何效果，在我尝试了很久之后终于解决了问题。</p>
<p>
先把问题说说看，不知道大家遇到过没有。《Math Into Latex》这个文档我在用Latex写笔记的时候总会开着，难免忘记了一些什么符号，不过Okular下面的字体惨不忍睹，很多字母重合在一起，先上个图大家看看：
</p>
<p><img src="http://pic.yupoo.com/huashuai/33147651506d/medium.jpg" alt="配置前的Okular字体" /></p>
<p>
简单说下我的系统，Archlinux，FVWM，字体用了Lucida和STHeiti稍作美化，所以修改了$HOME下的.fonts.conf文件，所以问题也就出在这里。在我解决问题之后，我把$HOME/.fonts.conf删除后，发现okular会到系统的/usr/share/fonts/TTF下寻找字体，显示的效果是这样的：
</p>
<p><img src="http://pic.yupoo.com/huashuai/95488651506e/medium.jpg" alt="没有任何配置的Okular字体" /></p>
<h4>解决办法：</h4>
<p>
如果你在Okular的菜单中找到File &#8211; Properties，然后在Fonts标签下就会看到缺失的字体名称，在这个Math_Into_Latex.pdf文件中缺失的便是一系列Galliard字体，包括Galliard-Bold, Galliard-BoldItalic, Galliard-Italic, 以及Galliar-Roman。首先要解决问题的话必须下载这些字体，我在某个英文站点找到了下载，大家也可以根据自己的情况下载对应的字体。</p>
<p>
第二件事情便是把这些字体放在适当的文件夹下，一般来说放在$HOME/.fonts/下面就可以，至少我是这样的。在你登录之后，这些字体是可以使用的。
</p>
<p>接下来需要做的便是在$HOME/.fonts.conf里面添加类似下面的内容：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Olive;">&lt;</span><span style="color: Green;">match</span><span style="color: Gray;"> </span><span style="color: #00008b;">target</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">pattern</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">name</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">family</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">test</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">name</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">family</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">qual</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">any</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Galliard</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">test</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">edit</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">mode</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">assign</span><span style="color: #8b0000;">&quot;</span><span style="color: Gray;"> </span><span style="color: #00008b;">name</span><span style="color: Gray;">=</span><span style="color: #8b0000;">&quot;</span><span style="color: Red;">family</span><span style="color: #8b0000;">&quot;</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span><span style="color: Gray;">Galliard BT</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">string</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp; &nbsp;&nbsp; </span><span style="color: Olive;">&lt;/</span><span style="color: Green;">edit</span><span style="color: Olive;">&gt;</span></li>
<li><span style="color: Gray;">&nbsp;</span><span style="color: Olive;">&lt;/</span><span style="color: Green;">match</span><span style="color: Olive;">&gt;</span></li></ol></div>
<p>
这样Okular在启动之后, 遇到Galliard类的字体，便会自动配对了，否则不一定会找到哪个字体。问题解决之后，再上图看看效果，这次在File &#8211; Properties当中看到的这些Galliard字体都是准确使用的对应字体了。
</p>
<p><img src="http://pic.yupoo.com/huashuai/95509651506d/medium.jpg" alt="配置后的Okular字体" /></p>
<p>
对于<a href="http://www.quhuashuai.com/tag/linux"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Linux"&#30340;&#25991;&#31456;"  rel="external">Linux</a>，我确实是菜鸟一个，在慢慢<a href="http://www.quhuashuai.com/tag/&#23398;&#20064;"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;&#8220;&#23398;&#20064;&#8221;&#30340;&#25991;&#31456;"  rel="external">学习</a>，都说用linux的人喜欢折腾，我这也算自己折腾出个东西，分享给大家。我觉得如果对于fontconfig很了解的，<br />
应该很快就能解决这个问题，我嘛，就需要很久来尝试了。不管怎么说，这至少也是个原创，呵呵！</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=256&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/&amp;title=Archlinux中配置Okular下缺失的英文字体">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a>, <a href="http://www.quhuashuai.com/tag/%e5%88%86%e4%ba%ab/" rel="tag">分享</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/contact/" title="联系方式 (2007-09-09)">联系方式</a> (84)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/first-blog-in-recent-four-months/" title="四个月来的第一篇文章 (2008-09-08)">四个月来的第一篇文章</a> (24)</li>
	<li><a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/" title="Archlinux下给T43添加Win键(Super键) (2009-04-17)">Archlinux下给T43添加Win键(Super键)</a> (15)</li>
	<li><a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/" title="Archlinux下安装Matlab 2008a (2008-09-11)">Archlinux下安装Matlab 2008a</a> (2)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/" title="Archlinux下启用Thinkpad功能键 (2008-10-15)">Archlinux下启用Thinkpad功能键</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Archlinux下安装Matlab 2008a</title>
		<link>http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/</link>
		<comments>http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 20:02:41 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
				<category><![CDATA[电脑应用]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://www.quhuashuai.com/?p=190</guid>
		<description><![CDATA[前些日子刚刚从Ubuntu过渡到了Archlinux，自己其实就是瞎凑热闹，别人都说Archlinux比较火，我就也凑过来看看，而且自从Matlab 2008a发布之后还没有尝试过，尽管自己曾经介绍过。现在已经有了Mac[...]]]></description>
			<content:encoded><![CDATA[<p>前些日子刚刚从Ubuntu过渡到了Archlinux，自己其实就是瞎凑热闹，别人都说Archlinux比较火，我就也凑过来看看，而且自从<a href="http://www.quhuashuai.com/tag/matlab"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Matlab"&#30340;&#25991;&#31456;"  rel="external">Matlab</a> 2008a发布之后还没有尝试过，尽管<a href="http://www.quhuashuai.com/2008/03/introduction-to-matlab2008a-and-download/">自己曾经介绍过</a>。现在已经有了Mac和<a href="http://www.quhuashuai.com/tag/linux"  class="alinks_links" onclick="return alinks_click(this);" title="&#20851;&#20110;"Linux"&#30340;&#25991;&#31456;"  rel="external">Linux</a>下的2008a的下载，<a href="http://thepiratebay.org/torrent/4361148/Matlab_7.6_2008a_(intel_only)___crack">地址就在这里</a>，有兴趣的可以自己去试试看。</p>
<p>
整个安装过程还是比较简单的，基本上和我在<a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/<br />
	">《Ubuntu下安装matlab过程》</a>中提到的一样，在这里稍微重复一下：
</p>
<ol>
<li>挂载iso文件：sudo mount -t iso9660 (iso文件的路径) /media/cdrom -o loop。在Archlinux下面可能你需要加载一下loop,也就是sudo modprobe loop。因为这个是DVD，所以没有再umount以及换盘的必要了。</li>
<li>建立Matlab安装目录：sudo mkdir /opt/matlab。这样就可以了，matlab 2008a的破解有些不同，所以这里并不需要拷贝任何的license文件到安装目录下。</li>
<li>终端下运行sudo /media/cdrom/install。使用绝对路径，这样不会出现问题。</li>
<li>安装过程中会提示让你选择注册的方式，一共有两种，在光盘下的crack文件夹下有详细说明，以及license文件，我这里选择的是稍后注册。</li>
<li>安装完成之后，运行sudo /opt/matlab/install_matlab进行一些相关设置，以及启动文件的连接之类工作，一路默认下来就可以了。</li>
<li>当你首次运行matlab的时候，会让你选择license文件所在的目录，这个时候如果你是普通用户运行的话，会无法完成注册，所以记得用root账户来运行matlab，后面的工作就是按照你的注册方式，选择对应的license文件。</li>
</ol>
<p>一般来说，在此之后你就可以顺利的运行matlab 2008a了。不过你很有可能象我一样遇到Java的问题，因为matlab使用自己的Java设置，所以尽管你系统里的其他Java程序没有问题，matlab不会理你是怎么设置的，所以启动matlab之后会出现java一类的错误。这样你就需要到/opt/matlab/sys/java/jre/glnx86/目录下：首先删除掉原本的jre1.6.0，然后将系统的link过来，执行起来就是：</p>
<p><code><br />
cd /opt/matlab/sys/java/jre/glnx86<br />
sudo mv jre1.6.0/ jre1.6.0-bakcup （稍作备份）<br />
sudo ln -s /opt/java/jre/ jre1.6.0 （我的java是装在/opt下)<br />
</code></p>
<p>
另外还有一个就是可能出现的字体问题，解决方法也很简单，这个基本上一次就可以解决所有的java程序字体，到/opt/java/jre/lib/fonts下建立fallback目录，再到fallback目录下面把你想要使用的中文字体link过来就好了。</p>
<img src="http://www.quhuashuai.com/?ak_action=api_record_view&id=190&type=feed" alt="" /><hr />
<p><small>&copy; Hugh for <a href="http://www.quhuashuai.com">杂乱的书桌</a>, 2008. |
<a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/">Permalink</a> |
<a href="http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/&amp;title=Archlinux下安装Matlab 2008a">del.icio.us</a>
<br/>
Post tags: <a href="http://www.quhuashuai.com/tag/linux/" rel="tag">linux</a>, <a href="http://www.quhuashuai.com/tag/matlab/" rel="tag">matlab</a><br/>
</small></p>
	<h4>也许你对这些文章还有兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.quhuashuai.com/2007/08/install_matlab_on_ubuntu/" title="Ubuntu下安装matlab过程 (2007-08-15)">Ubuntu下安装matlab过程</a> (9)</li>
	<li><a href="http://www.quhuashuai.com/2008/11/matlab-2008b-download/" title="MATLAB 2008b下载地址 (2008-11-20)">MATLAB 2008b下载地址</a> (7)</li>
	<li><a href="http://www.quhuashuai.com/2008/03/introduction-to-matlab2008a-and-download/" title="Matlab 2008a介绍以及下载地址 (2008-03-23)">Matlab 2008a介绍以及下载地址</a> (14)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/okular-font-problem-in-archlinux/" title="Archlinux中配置Okular下缺失的英文字体 (2008-10-09)">Archlinux中配置Okular下缺失的英文字体</a> (2)</li>
	<li><a href="http://www.quhuashuai.com/2009/04/archlinux%e4%b8%8b%e7%bb%99t43%e6%b7%bb%e5%8a%a0win%e9%94%aesuper%e9%94%ae/" title="Archlinux下给T43添加Win键(Super键) (2009-04-17)">Archlinux下给T43添加Win键(Super键)</a> (15)</li>
	<li><a href="http://www.quhuashuai.com/2008/10/enable-fn-in-thinkpad-under-archlinux/" title="Archlinux下启用Thinkpad功能键 (2008-10-15)">Archlinux下启用Thinkpad功能键</a> (2)</li>
</ul>


<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quhuashuai.com/2008/09/install-matlab-2008a-on-archlinux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
