<?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>FDS Repository &#187; Ubuntu System</title>
	<atom:link href="http://www.finaldesign.co.uk/blog/category/ubuntu-linux/ubuntu-system/feed" rel="self" type="application/rss+xml" />
	<link>http://www.finaldesign.co.uk/blog</link>
	<description>Because it's useful</description>
	<lastBuildDate>Sun, 17 Jul 2011 14:57:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Ubuntu Super and Hyper Key assignments</title>
		<link>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/ubuntu-super-and-hyper-key-assignments.html</link>
		<comments>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/ubuntu-super-and-hyper-key-assignments.html#comments</comments>
		<pubDate>Fri, 05 Oct 2007 05:55:39 +0000</pubDate>
		<dc:creator>Omar</dc:creator>
				<category><![CDATA[Ubuntu System]]></category>

		<guid isPermaLink="false">http://www.finaldesign.co.uk/blog/archives/ubuntu-super-and-hyper-key-assignments.html</guid>
		<description><![CDATA[xmodmap -e &#8220;keycode 234 = Super_L&#8221; xmodmap -e &#8220;keycode 233 = Super_R&#8221; Userland method (of course you&#8217;re using GNOME and FC6): First method: Create in $HOME a .Xmodmap file. It must be as such: ! Xmodmap for IBM Thinkpad T30: ! map browser keys to Super (Windows) and Hyper keys keycode 233 = Hyper_R keycode [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>xmodmap -e &#8220;keycode 234 = Super_L&#8221;<br />
xmodmap -e &#8220;keycode 233 = Super_R&#8221;</p></blockquote>
<p><span id="more-28"></span></p>
<p>Userland method (of course you&#8217;re using GNOME and FC6):</p>
<p><strong>First method: </strong></p>
<p>Create in $HOME a .Xmodmap file. It must be as such:</p>
<blockquote><p>! Xmodmap for IBM Thinkpad T30:<br />
!    map browser keys to Super (Windows) and Hyper keys<br />
keycode 233 = Hyper_R  keycode 234 = Super_L</p></blockquote>
<p>This file will be automatically read at the next session login (a small dialog box appears for this)</p>
<p><strong>Second method:</strong> add some lines or create in $HOME a .Xsession file. It must be an executable file (chmod +x .Xsession) as such:</p>
<blockquote><p>#!/bin/sh  xmodmap -e<br />
&#8220;keycode 233 = Hyper_R&#8221;<br />
xmodmap -e &#8220;keycode 234 = Super_L&#8221;</p></blockquote>
<p><strong>Rootland mode:</strong> as root edit the /etc/X11/Xmodmap file and add the following lines at the end of this file :</p>
<blockquote><p>! Xmodmap for IBM Thinkpad T30:<br />
!     map browser keys to Super (Windows) and Hyper key<br />
keycode 233 = Hyper_R  keycode 234 = Super_L</p></blockquote>
<p>restart X, that&#8217;s it !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/ubuntu-super-and-hyper-key-assignments.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu CPU Frequency Management</title>
		<link>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/ubuntu-cpu-frequency-management.html</link>
		<comments>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/ubuntu-cpu-frequency-management.html#comments</comments>
		<pubDate>Fri, 05 Oct 2007 04:52:22 +0000</pubDate>
		<dc:creator>Omar</dc:creator>
				<category><![CDATA[Ubuntu System]]></category>

		<guid isPermaLink="false">http://www.finaldesign.co.uk/blog/archives/26.html</guid>
		<description><![CDATA[Having changed the CPU frequency to &#8216;Performance&#8217; I decided to go back to &#8216;On Demand&#8217; so that the processor would not get so hot. My laptop&#8217;s Intel Centrino 1.7Ghz processor was heating up to 81 degrees celcius! Intel say that the maximun operating temperature for this processor is 100 degrees, but I think I would [...]]]></description>
			<content:encoded><![CDATA[<p>Having changed the CPU frequency to &#8216;Performance&#8217; I decided to go back to &#8216;On Demand&#8217; so that the processor would not get so hot. My laptop&#8217;s Intel Centrino 1.7Ghz processor was heating up to 81 degrees celcius! Intel say that the maximun operating temperature for this processor is 100 degrees, but I think I would rather keep it cool for longer to increase not only the battery life whilst unplugged, but also to increase the lifetime of the processor itself. <span id="more-26"></span>It took quite a while to find these commands. One of the reasons I decided to start documenting these Ubuntu tweeks myself :)</p>
<p><strong>Modes:</strong></p>
<p>Continuous maximum frequency</p>
<blockquote><p>sudo cpfreq-selector -g performance</p></blockquote>
<p>Increases the CPU frequency slowly if needed, and then decreases quickly.</p>
<blockquote><p>sudo cpfreq-selector -g conservative</p></blockquote>
<p>Increases and decreases the CPU frequency quickly, on-demand</p>
<blockquote><p>sudo cpfreq-selector -g ondemand</p></blockquote>
<p>Powersave sais it all</p>
<blockquote><p>sudo cpfreq-selector -g powersave</p></blockquote>
<p>I do not recall how the following operates</p>
<blockquote><p>sudo cpfreq-selector -g userspace</p></blockquote>
<p>It is also possible to set particular frequencies manually with multipliers such as 10000 or 12000 but I do not think this is necessary given the options above, not to mention far less intrusive.</p>
<p>Changing the permissions of the cpufreq-selector binary by doing a:</p>
<blockquote><p>$sudo chmod +s /usr/bin/cpufreq-selector</p></blockquote>
<p>will allow me to left mouse click on the &#8216;Frequency Monitor&#8217; and select a mode and speed from a drop-down menu. Very convenient.</p>
<p>However, you can set the suid of the cpufreq-selector executable by running the following in the terminal and confirming upon prompt.</p>
<blockquote><p>$ sudo dpkg-reconfigure gnome-applets</p></blockquote>
<p>I will not recommend this as It caused me problems with my own setup. In short, my CPU frequency got stuck on 800Mhz (46%). I recommend using the safer &#8216;Modes&#8217; posted at the start of this post to control how you wish to use your CPU.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/ubuntu-cpu-frequency-management.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shift + Backspace Killing Ubuntu</title>
		<link>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/shift-backspace-killing-ubuntu.html</link>
		<comments>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/shift-backspace-killing-ubuntu.html#comments</comments>
		<pubDate>Fri, 05 Oct 2007 01:21:29 +0000</pubDate>
		<dc:creator>Omar</dc:creator>
				<category><![CDATA[Ubuntu System]]></category>

		<guid isPermaLink="false">http://www.thewebconsultant.co.uk/blog/archives/shift-backspace-killing-ubuntu.html</guid>
		<description><![CDATA[Ever been typing on your computer with an Ubuntu installation and find the screen go black or that you have been logged out, shutting down all your open applications because you forget and hit the backspace key whilst holding down the Shift key? Major pain. Hereâ€™s a solution I have come accross: Open your terminal [...]]]></description>
			<content:encoded><![CDATA[<p>Ever been typing on your computer with an Ubuntu installation and  find the screen go black or that you have been logged out, shutting  down all your open applications because you forget and hit the <strong>backspace key whilst holding down the Shift key</strong>? Major pain.</p>
<p>Hereâ€™s a solution I have come accross:<span id="more-22"></span></p>
<p><strong>Open your terminal</strong> and enter the following  (ensuring you re-enter the single speech marks (â€™) as the terminal has  a special need where this is concerned):</p>
<blockquote><p>xmodmap -e â€˜keycode 22 = Backspace Backspace Terminate_Serverâ€™</p>
</blockquote>
<p>You may find that this is not a permanent fix and that the  next time you start your machine the problem only returns, meaning you  will have to make the â€˜<em>Shift + Backspace restart</em>â€˜ fix again. To overcome this, I simply run the command during startup by following the following steps:</p>
<p><strong>Navigate to System > Preferences > Sessions</strong> and click the <strong>Startup Programs</strong> tab.</p>
<p><strong>Click Add</strong> and enter:</p>
<blockquote><p><strong>xmodmap -e â€˜keycode 22 = Backspace Backspace Terminate_Serverâ€™</strong></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.finaldesign.co.uk/blog/ubuntu-linux/ubuntu-system/shift-backspace-killing-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

