<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Key Mapping in GNU/Linux (Debian Lenny)</title>
	<atom:link href="http://codehunk.wordpress.com/2009/04/17/key-mapping-in-gnulinux-debian-lenny/feed/" rel="self" type="application/rss+xml" />
	<link>http://codehunk.wordpress.com/2009/04/17/key-mapping-in-gnulinux-debian-lenny/</link>
	<description>the way i see it.......</description>
	<lastBuildDate>Mon, 18 Feb 2013 06:15:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: janmejay</title>
		<link>http://codehunk.wordpress.com/2009/04/17/key-mapping-in-gnulinux-debian-lenny/#comment-165</link>
		<dc:creator><![CDATA[janmejay]]></dc:creator>
		<pubDate>Wed, 24 Nov 2010 10:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://codehunk.wordpress.com/?p=170#comment-165</guid>
		<description><![CDATA[Just did it for my alternate OS(Arch), KEYMAP for Arch is set in /etc/rc.conf]]></description>
		<content:encoded><![CDATA[<p>Just did it for my alternate OS(Arch), KEYMAP for Arch is set in /etc/rc.conf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: janmejay</title>
		<link>http://codehunk.wordpress.com/2009/04/17/key-mapping-in-gnulinux-debian-lenny/#comment-116</link>
		<dc:creator><![CDATA[janmejay]]></dc:creator>
		<pubDate>Sun, 01 Nov 2009 20:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://codehunk.wordpress.com/?p=170#comment-116</guid>
		<description><![CDATA[Have been using the same setup on my Gentoo installation for a long time. I somehow forgot to post steps for it. 
So, if you got &lt;b&gt;Gentoo&lt;/b&gt;, here are the steps:

&lt;b&gt;X-displays:&lt;/b&gt;(same as debian, using xmodmap).

&lt;b&gt;Console(non X environments):&lt;/b&gt; 
&lt;pre&gt;
  $ cd /etc/conf.d/
  $ sudo emacs keymaps # use whatever editor you prefer
  $ # find the line that reads KEYMAP=&quot;&quot;, and change it to KEYMAP=&quot;-personalized&quot; (&quot;&quot; is not a litteral, its a value, for me it was KEYMAP=&quot;us&quot;, or so i think and i made it KEYMAP=&quot;us-personalized&quot;),  Save the file and exit $EDITOR.
  $ cd /usr/share/keymaps
  $ find . -name &#039;.map.gz&#039; -type f # use &quot;&quot; value from the last command
  $ # observe the directory holding that file the last command found, and cd to it
  $ cd  # for me,  was i386/qwerty
  $ sudo cp .map.gz -personalized.map.gz
  $ sudo emacs -personalized.map.gz # if you are using some other editor(not emacs), it may not have capability to edit gzip files, so follow the usual procedure of gunzip&#039;ing it first, editing it, and then gzip&#039;ing it again. (cat -personalized.map.gz &#124; gunzip &gt; /tmp/my_map &amp;&amp; $EDITOR /tmp/my_map &amp;&amp; cat /tmp/my_map &#124; gzip &gt; /tmp/my_map.gz &amp;&amp; sudo cp /tmp/my_map.gz ./-personalized.map.gz)
  $ # find the line that reads &#039;keycode 58 = Caps_Lock&#039;, change it to &#039;keycode 58 = Control&#039; and find the one thats &#039;keycode 97 = Control&#039;, change it to &#039;keycode 97 = Caps_Lock&#039;
  $ # save the file, and you are done, on the next bootup, your non X session should have Right Control key as CapsLock and CapsLock key as Control.
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Have been using the same setup on my Gentoo installation for a long time. I somehow forgot to post steps for it.<br />
So, if you got <b>Gentoo</b>, here are the steps:</p>
<p><b>X-displays:</b>(same as debian, using xmodmap).</p>
<p><b>Console(non X environments):</b> </p>
<pre>
  $ cd /etc/conf.d/
  $ sudo emacs keymaps # use whatever editor you prefer
  $ # find the line that reads KEYMAP="", and change it to KEYMAP="-personalized" ("" is not a litteral, its a value, for me it was KEYMAP="us", or so i think and i made it KEYMAP="us-personalized"),  Save the file and exit $EDITOR.
  $ cd /usr/share/keymaps
  $ find . -name '.map.gz' -type f # use "" value from the last command
  $ # observe the directory holding that file the last command found, and cd to it
  $ cd  # for me,  was i386/qwerty
  $ sudo cp .map.gz -personalized.map.gz
  $ sudo emacs -personalized.map.gz # if you are using some other editor(not emacs), it may not have capability to edit gzip files, so follow the usual procedure of gunzip'ing it first, editing it, and then gzip'ing it again. (cat -personalized.map.gz | gunzip &gt; /tmp/my_map &amp;&amp; $EDITOR /tmp/my_map &amp;&amp; cat /tmp/my_map | gzip &gt; /tmp/my_map.gz &amp;&amp; sudo cp /tmp/my_map.gz ./-personalized.map.gz)
  $ # find the line that reads 'keycode 58 = Caps_Lock', change it to 'keycode 58 = Control' and find the one thats 'keycode 97 = Control', change it to 'keycode 97 = Caps_Lock'
  $ # save the file, and you are done, on the next bootup, your non X session should have Right Control key as CapsLock and CapsLock key as Control.
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: janmejay</title>
		<link>http://codehunk.wordpress.com/2009/04/17/key-mapping-in-gnulinux-debian-lenny/#comment-53</link>
		<dc:creator><![CDATA[janmejay]]></dc:creator>
		<pubDate>Fri, 17 Apr 2009 18:02:05 +0000</pubDate>
		<guid isPermaLink="false">http://codehunk.wordpress.com/?p=170#comment-53</guid>
		<description><![CDATA[Wow... i didn&#039;t know it could uncompress and edit files on the fly.... You made my day!!!! :-)]]></description>
		<content:encoded><![CDATA[<p>Wow&#8230; i didn&#8217;t know it could uncompress and edit files on the fly&#8230;. You made my day!!!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://codehunk.wordpress.com/2009/04/17/key-mapping-in-gnulinux-debian-lenny/#comment-52</link>
		<dc:creator><![CDATA[anon]]></dc:creator>
		<pubDate>Fri, 17 Apr 2009 15:03:55 +0000</pubDate>
		<guid isPermaLink="false">http://codehunk.wordpress.com/?p=170#comment-52</guid>
		<description><![CDATA[not need for all that, just C-x C-f /su:root@localhost:/etc/console/boottime.kmap.gz RET]]></description>
		<content:encoded><![CDATA[<p>not need for all that, just C-x C-f /su:root@localhost:/etc/console/boottime.kmap.gz RET</p>
]]></content:encoded>
	</item>
</channel>
</rss>
