<?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>actionshrimp.com &#187; Linux</title>
	<atom:link href="http://www.actionshrimp.com/category/tech/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.actionshrimp.com</link>
	<description>fun and geekery</description>
	<lastBuildDate>Sun, 18 Apr 2010 12:42:44 +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>Installing awesome Window Manager on Ubuntu Intrepid</title>
		<link>http://www.actionshrimp.com/2009/02/installing-awesome-window-manager-on-ubuntu-intrepid/</link>
		<comments>http://www.actionshrimp.com/2009/02/installing-awesome-window-manager-on-ubuntu-intrepid/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 21:33:08 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[awm]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://www.actionshrimp.com/?p=52</guid>
		<description><![CDATA[Today I had a go at installing awesome window manager. awesome is a great tiling window manager, useful if you have a large monitor and are fed up with having one window taking up all the space when it doesn&#8217;t really need it all. For example, having firefox maximised on a 1920&#215;1200 resolution monitor can [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had a go at installing <a href="http://awesome.naquadah.org/">awesome window manager</a>. awesome is a great tiling window manager, useful if you have a large monitor and are fed up with having one window taking up all the space when it doesn&#8217;t really need it all. For example, having firefox maximised on a 1920&#215;1200 resolution monitor can mean you end up with very large sentences that spread across the screen, decreasing readability. Unfortunately the version of awesome in the Interpid repos is 2.3.2-1, which is now deprecated, and the current stable release is version 3.1-1.</p>
<p><img class="aligncenter size-full wp-image-67" title="awesomescreenmini" src="http://www.actionshrimp.com/wordpress/wp-content/uploads/2009/02/awesomescreenmini.png" alt="awesomescreenmini" width="200" height="98" /></p>
<p>The website suggests building from source &#8211; I attempted this but there are currently a couple of issues with compilation mentioned in the wiki, and even with the fix suggested I couldn&#8217;t quite get it to work &#8211; although I didn&#8217;t try too hard it must be said; instead I found another method which I will walk you through now.</p>
<p><span id="more-52"></span></p>
<h2>Installing and Trying It Out</h2>
<p>The method I ended up using (thanks to my buddy Matt for figuring this out) revolves using binaries from the Debian experimental repository, which seem to work perfectly. First, you can download the awesome 3.1-1 package (N.B. The binaries I&#8217;m linking to here from Debian&#8217;s website are for i386, for others just search for them on the site), and try and install it with:</p>
<pre>wget http://ftp.uk.debian.org/debian/pool/main/a/awesome/awesome_3.1-1_i386.deb
sudo dpkg -i awesome_3.1-1_i386.deb</pre>
<p>However, it will spit out a list of dependencies it couldn&#8217;t manage &#8211; these are packages that are also outdated in the current Ubuntu repos. So next, fetch the ones you need which are listed below:</p>
<pre>wget http://ftp.uk.debian.org/debian/pool/main/x/xcb-util/libxcb-atom1_0.3.2-1_i386.deb
wget http://ftp.uk.debian.org/debian/pool/main/x/xcb-util/libxcb-aux0_0.3.2-1_i386.deb
wget http://ftp.uk.debian.org/debian/pool/main/x/xcb-util/libxcb-event1_0.3.2-1_i386.deb
wget http://ftp.uk.debian.org/debian/pool/main/x/xcb-util/libxcb-icccm1_0.3.2-1_i386.deb
wget http://ftp.uk.debian.org/debian/pool/main/x/xcb-util/libxcb-keysyms0_0.3.2-1_i386.deb
wget http://ftp.uk.debian.org/debian/pool/main/x/xcb-util/libxcb-property1_0.3.2-1_i386.deb
wget http://ftp.uk.debian.org/debian/pool/main/x/xcb-util/libxcb-render-util0_0.3.2-1_i386.deb</pre>
<p>Then try and install them all with dpkg:</p>
<pre>sudo dpkg -i awesome_3.1-1_i386.deb libxcb-atom1_0.3.2-1_i386.deb libxcb-aux0_0.3.2-1_i386.deb \
libxcb-event1_0.3.2-1_i386.deb libxcb-icccm1_0.3.2-1_i386.deb libxcb-property1_0.3.2-1_i386.deb \
libxcb-render-util0_0.3.2-1_i386.deb libxcb-keysyms0_0.3.2-1_i386.deb</pre>
<p>At this point, it might spit out that it needs some extra packages &#8211; these are packages that you should just be able to install normally with synaptic or apt: I had to install menu for example,  you may have to install some others as I had a few other dependencies installed from trying to build from source earlier on.  Once you have all the packages, run the above command again to install awesome.</p>
<p>Once awesome is installed, we need a configuration file. A default config file is provided, so go ahead and copy it to your home dir:</p>
<pre>mkdir ~/.config/awesome
cp /etc/xdg/awesome/rc.lua ~/.config/awesome/rc.lua</pre>
<p>Now we can see if awesome works &#8211; kill your current window manager (in my case compiz), then fire up awesome:</p>
<pre>killall compiz.real &amp;&amp; awesome&amp;</pre>
<p>Hopefully everything has gone to plan, and awesome should now be running! Hooray! Have a little play around with it, mess with the config file a bit and see if you like it. Some useful key-bindings are:</p>
<ul>
<li>Win + Enter &#8211; launch a terminal</li>
<li>Win + F1 &#8211; run a command</li>
<li>Win + J/K &#8211; switch windows (à la vim)</li>
<li>Win + H/L &#8211; resize major/minor divide</li>
<li>Win + Shift + J/K &#8211; move windows</li>
<li>Win + Space &#8211; change layout</li>
<li>Win + Ctrl + r &#8211; restart awesome, for example to update if you change the config file</li>
</ul>
<p>There are loads more keybindings that you can find/change in the config file if you wanna know what they all do exactly.</p>
<p>If after using awesome for a while you decide you want to keep it, there are a few loose ends to tie up.</p>
<h2>Setting awesome as the Default Window Manager</h2>
<p>First, fire up gconf-editor:</p>
<pre>gconf-editor</pre>
<p>On the list on the left, goto:</p>
<pre> desktop &gt; gnome &gt; session</pre>
<p>First of all, we&#8217;ll get rid of the gnome-panels &#8211; awesome already has its own. On the right, there is a <strong>name/value pair</strong> with name &#8216;required_components_list&#8217;, containing &#8220;[windowmanager, panel, filemanager]&#8220;. Remove panel, so it becomes &#8220;[windowmanager, filemanager]&#8220;.</p>
<p>Next we actually tell gnome to load in awesome instead of compiz. On the list on the left, choose the <strong>folder</strong> required_components. Change the windowmanager field from &#8221;compiz&#8217; to &#8216;awesome&#8217;.</p>
<p>Finally, you&#8217;ll probably wan&#8217;t to disable nautilus&#8217;s desktop (where the desktop icons live etc.) as it can do funny things, and with your magical new tiling windows you will probably never see the desktop. To do this, from the list on the left choose</p>
<pre>apps &gt; nautilus &gt; preferences</pre>
<p>and when here, uncheck show_desktop.</p>
<p>Now you can kiss sweet goodbye to all the remnants of your old desktop &#8211; log out of your system and log back in again to see it take effect. WARNING: If something has gone wrong and awesome doesn&#8217;t load (maybe you mispelt it in gconf-editor or something), you should still be able to find a way to edit the gconf preferences, but it took me a while to figure out how to logout when the normal gnome logout button had disappeared. To logout in this situation, type gnome-session-save &#8211;kill.</p>
<h2>Customising and Configuring</h2>
<p>Due to the highly keyboard oriented nature of awesome, you may now want to install a launcher. A couple of good ones are Gnome-Do (if you opt for this, you will have to change the binding from Win+Space in the awesome preferences, or reconfigure awesome&#8217;s binding for this combination), an all singing all dancing affair which I used for a while, or dmenu which is quite a lot simpler and I&#8217;ve opted for in this case.</p>
<p>To install dmenu:</p>
<pre>sudo apt-get install dmenu</pre>
<p>Next we setup a keybinding for it to launch in the awesome config file. Underneath the line:</p>
<pre>-- {{{ Keybindings</pre>
<p>Add (here it is mapped to Win+P &#8211; change this if you like):</p>
<pre>-- dmenu
keybinding({ modkey }, "p", function () awful.util.spawn("`dmenu_path | dmenu -b`") end):add()</pre>
<p>Also, as awesome is aimed at uber geeks the time is displayed by default as&#8230;. unix time_t. Unless you&#8217;re some kind of magician, hunt down the section in the config file that looks like this, and comment/uncomment accordingly:</p>
<pre>-- For unix time_t lovers
--mytextbox.text = " " .. os.time() .. " time_t "
-- Otherwise use:
mytextbox.text = " " .. os.date() .. " "</pre>
<p>Finally, I missed my CPU monitor. There is however a set of widgets you can get that adds functionality like this called wicked.</p>
<p>Install wicked:</p>
<pre>git clone git://git.glacicle.com/awesome/wicked.git
sudo cp wicked/wicked.lua /usr/share/awesome/lib/
sudo cp wicked/wicked.7.gz /usr/share/man/man7/</pre>
<p>in config file, underneath:</p>
<pre>-- {{{ Wicked Widgets</pre>
<p>Add in:</p>
<pre>-- {{{ Wicked Widgets
-- CPU Usage Graph
cpugraphwidget = widget({
type = 'graph',
name = 'cpugraphwidget',
align = 'left'
})
cpugraphwidget.height = 0.85
cpugraphwidget.width = 45
cpugraphwidget.bg = '#333333'
cpugraphwidget.border_color = '#0a0a0a'
cpugraphwidget.grow = 'right'

cpugraphwidget:plot_properties_set('cpu', {
fg = '#AEC6D8',
fg_center = '#285577',
fg_end = '#285577',
vertical_gradient = false
})
wicked.register(cpugraphwidget, wicked.widgets.cpu, '$1', 1, 'cpu')</pre>
<p>Then add in the cpugraphwidget into the mywibox[s].widgets line:</p>
<pre>mywibox[s].widgets = { mylauncher,
mytaglist[s],
mytasklist[s],
mypromptbox[s],
cpugraphwidget,
mytextbox,
mylayoutbox[s],</pre>
<p>For full instructions on <a href="http://awesome.naquadah.org/wiki/index.php?title=Wicked">how to use wicked</a>, and configure awesome, check out the <a href="http://awesome.naquadah.org/wiki/index.php?title=Main_Page">awesome wiki</a>. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionshrimp.com/2009/02/installing-awesome-window-manager-on-ubuntu-intrepid/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Logitech QuickCam E2500 on Ubuntu Skype</title>
		<link>http://www.actionshrimp.com/2008/08/logitech-quickcam-e2500-on-ubuntu-skype/</link>
		<comments>http://www.actionshrimp.com/2008/08/logitech-quickcam-e2500-on-ubuntu-skype/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 00:12:57 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[e2500]]></category>
		<category><![CDATA[quickcam]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.actionshrimp.com/?p=8</guid>
		<description><![CDATA[I recently discovered the wonders of skype, and tried to get my new webcam working with it under linux, and of course this proved to be quite tricky. After much fiddling I eventually got it to work, hopefully these steps will work for you too.

The gspca drivers are available from here, I was using a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-127 alignleft" title="193818" src="http://www.actionshrimp.com/wordpress/wp-content/uploads/2008/08/193818.jpg" alt="193818" width="170" height="170" />I recently discovered the wonders of skype, and tried to get my new webcam working with it under linux, and of course this proved to be quite tricky. After much fiddling I eventually got it to work, hopefully these steps will work for you too.</p>
<p><span id="more-8"></span></p>
<p>The gspca drivers are available from <a href="http://mxhaard.free.fr/download.html">here</a>, I was using a specific version dated 20071224 to work with a patch file I found &#8211; many thanks to <a href="http://forums.quickcamteam.net/showthread.php?tid=310">redeye on the QuickCam team forums</a>. If you use a different version of the drivers, you can just examine the patch file and insert the changes manually.</p>
<p>First, download the drivers and the patch:</p>
<pre>wget http://mxhaard.free.fr/spca50x/Download/gspcav1-20071224.tar.gz
wget http://forums.quickcamteam.net/attachment.php?aid=86 -O patch.tar.gz</pre>
<p>Then extract and apply the patch:</p>
<p>(UPDATE: For Ubuntu 8.10 users, this patch may no longer work. Try downloading the patch <a href="http://www.actionshrimp.com/wordpress/wp-content/uploads/2009/01/gspcapatch.gz">here</a> instead, and then extract it using gzip -d gspcapatch.gz. Apply the extracted file in the same was as below, just neglect the -p1 switch, (so do: patch &lt; gspcapatch), you can just ignore the tar -xvf patch.tar.gz command).</p>
<pre>tar -xvf gspcav1-20071224.tar.gz
tar -xvf patch.tar.gz
cd gspcav1-20071224
patch -p1 &lt; ../quickcamE2500.diff</pre>
<p>There&#8217;s a handy build script included with the drivers so just run that (requires root):</p>
<pre>sudo ./gspca_build</pre>
<p>This generates the file</p>
<pre>gspca.ko</pre>
<p>which we use to replace the old gspca module.<br />
Check to see if the old module is loaded, you should see something like:</p>
<pre>dave@baracus:~$ lsmod | grep gspca
gspca                 680656  0
videodev               29440  1 gspca
usbcore               146028  9 gspca,snd_usb_audio,snd_usb_lib,usb_storage,usbhid,libusual,ehci_hcd,ohci_hcd</pre>
<p>We want to find out where it is, so do the following:</p>
<pre>sudo rmmod gspca
sudo modprobe -v gspca</pre>
<p>You should see something like:</p>
<pre>insmod /lib/modules/2.6.24-20-generic/ubuntu/media/gspcav1/gspca.ko</pre>
<p>That is the location of the file we&#8217;re looking for, so, replacing where appropriate with what was output for you above, type:</p>
<pre>sudo rmmod gspca
sudo rm /lib/modules/2.6.24-20-generic/ubuntu/media/gspcav1/gspca.ko
sudo mv gspca.ko /lib/modules/2.6.24-20-generic/ubuntu/media/gspcav1/
sudo modprobe gspca</pre>
<p>This should have loaded the new module in place of the old one. See if you have a video device:</p>
<pre>dave@baracus:~$ ls /dev/video*
/dev/video0</pre>
<p>You can try and run Skype now, and in fact, if you&#8217;re not using the camera for Skype, this may well be enough. But for the Skype users: see if you get any picture by testing in the video devices option menu (be warned, it can take a little while to show up there after skype loads, and a little while for the picture to show when you press the test button, so be patient). If anything show&#8217;s up at all that&#8217;s a plus. (UPDATE: If you&#8217;re using Ubuntu 8.10, and have used the alternative patch I posted in the other &#8220;UPDATE:&#8221; bracket above, the webcam may still not work in Skype at this point. There seems to be some issue with permissions in this version of the driver, so you may need to run skype as root if it doesn&#8217;t appear to be working. In a terminal type &#8220;sudo skype&#8221; and hit enter. It&#8217;ll ask for your root password, then launch skype. See if the webcam works now).</p>
<p>Originally, I had a black image, so I assumed the camera wasn&#8217;t working, but I soon realised that the image was there, just very dark &#8211; shining a light on it showed this was the case. I tried fiddling around with gstfakevideo for a while to try and alter the output, but there was a much simpler solution. The gspca driver itself can take options, and an autoexposure setting was ruining my lighting. To fix this, edit the file /etc/modprobe.d/options, and add a line at the bottom:</p>
<pre>options gspca gamma=1 autoexpo=0</pre>
<p>The gamma=1 may not be necessary, but if it still appears too dark or too light for your taste you can change this parameter as you like. Finally, reload the module:</p>
<pre>sudo rmmod gspca
sudo modprobe gspca</pre>
<p>and try out skype again. Hopefully it works!</p>
<p>I ran into quite a lot of other problems while I was trying this out, so if you come across any errors, drop a comment below and I&#8217;ll try and get back to you asap.</p>
<p><strong>UPDATE</strong>: I found a large problem when using the camera in Skype was that CPU usage would shoot up to 100%, causing things to freeze up and conversations to crash after a while. I had played around with <a href="http://code.google.com/p/gstfakevideo">gstfakevideo</a> a bit when trying to get the camera to work originally, and it seems using this when the camera already &#8216;works&#8217; means it uses up far less CPU. I haven&#8217;t had a chance to test it for a long period yet but it seems like it should do the trick. Here&#8217;s what I did:</p>
<p>First, download gstfakevideo using subversion (you may need to install the subversion package, sudo apt-get subversion probably does the trick, and then the command below will make a directory called gstfakevideo in your current location, so make sure it&#8217;s somewhere nice), then compile and install it:</p>
<pre>svn checkout http://gstfakevideo.googlecode.com/svn/trunk/ gstfakevideo
cd gstfakevideo
make
sudo make install</pre>
<p>gstfakevideo creates a new video stream using your webcam, which is formatted differently and skype seems to get along with it more. The only problem is, it outputs its stream to /dev/video0 which is where our webcam currently lives. So we have to move the webcam, but this is easy enough:</p>
<pre>sudo mv /dev/video0 /dev/video1</pre>
<p>(Actually, gstfakevideo seems to work for me with lower CPU without moving this &#8211; but try it moved first anyway). Watch out though, every time you reboot, your webcam will probably go to /dev/video0 by default, assuming you have no other video devices, so you will have to move stuff about to make a space in video0 each time. Now we see if it works:</p>
<pre>gstfakevideo v4lsrc device=/dev/video1 ! ffmpegcolorspace</pre>
<p>What this does is runs gstfakevideo, telling it that the source we&#8217;re using is a v4l source, and its from /dev/video1. The ffmpegcolorspace argument seems to be for making the stream YUV instead of RGB for some cameras so may not be necessary. It then launches skype, with hopefully the output below:</p>
<pre>dave@baracus:~$ gstfakevideo v4lsrc device=/dev/video1 ! ffmpegcolorspace
gst.c create_pipeline (155): pipeline created
gst.c create_pipeline (159): pipeline linked</pre>
<p>If you look in the skype video options now there will be no camera listed. You have to wait a while (it can take 30s or so), until you get some output, ending with something like:</p>
<pre>gst.c shim_ioctl (201): request=803c7601 nr 1
gst.c shim_ioctl (208): VIDIOCGCAP
gst.c shim_ioctl (313): result=0 error=0 Success</pre>
<p>Now a camera should show up in the video menu in skype, with a name like GStreamer fake video (/dev/video0). Try it out, and compare your CPU performance to before. Also try exiting skype, and moving your video source from /dev/video1 back to video0, and running gstfakevideo again, only with device=/dev/video0, and see if it works (and let me know your findings below!).</p>
<p>Finally if gstfakevideo works, we can clean it up so the command isn&#8217;t so long to type. The script should be stored in:</p>
<pre>/usr/local/bin/gstfakevideo</pre>
<p>(Can check this using):</p>
<pre>dave@baracus:~$ whereis gstfakevideo
gstfakevideo: /usr/local/bin/gstfakevideo</pre>
<p>So we edit this file (requires root):</p>
<pre>sudo gedit /usr/local/bin/gstfakevideo</pre>
<p>Now, find the line that looks like this:</p>
<pre>export GST_PIPE="videotestsrc is-live=true ! video/x-raw-yuv,width=640,height=480,framerate=10/1 ! videoscale ! ffmpegcolorspace ! vertigotv ! ffmpegcolorspace"</pre>
<p>and change it to (remember where you put your webcam source &#8211; if you moved it back to /dev/video0, change the device parameter accordingly):</p>
<pre>export GST_PIPE="v4lsrc device=/dev/video1 ! ffmpegcolorspace"</pre>
<p>and finally look a bit further down, and delete the line:</p>
<pre>export GST_PIPE="$*"</pre>
<p>Now Skype will launch with your faked video stream, just from the command gstfakevideo. Good luck! Let me know how you get on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionshrimp.com/2008/08/logitech-quickcam-e2500-on-ubuntu-skype/feed/</wfw:commentRss>
		<slash:comments>124</slash:comments>
		</item>
		<item>
		<title>Laptop hard drive clicking in Hardy</title>
		<link>http://www.actionshrimp.com/2008/05/laptop-hard-drive-clicking-in-hardy/</link>
		<comments>http://www.actionshrimp.com/2008/05/laptop-hard-drive-clicking-in-hardy/#comments</comments>
		<pubDate>Sat, 03 May 2008 15:09:37 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[clicking]]></category>
		<category><![CDATA[harddrive]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.actionshrimp.com/wordpress/?p=4</guid>
		<description><![CDATA[Since I installed Hardy a week or so ago, I noticed the hard drive in my laptop was making a strange clicking noise every 5 seconds or so. At first I thought it must be slowly dying, and I was starting to get a bit worried, but then realised it seemed a bit suspicious that [...]]]></description>
			<content:encoded><![CDATA[<p>Since I installed Hardy a week or so ago, I noticed the hard drive in my laptop was making a strange clicking noise every 5 seconds or so. At first I thought it must be slowly dying, and I was starting to get a bit worried, but then realised it seemed a bit suspicious that it coincided with Hardy so closely, so I searched around.</p>
<p><span id="more-4"></span></p>
<p>Turns out I wasn&#8217;t the only one with the problem, and I found a solution <a href="http://ubuntuforums.org/showthread.php?t=531866">here</a>. (Thanks to wieman01 on the Ubuntu forums for this.)</p>
<p>What was happening was Ubuntu&#8217;s power management was a bit over zealous and was making the hard drive spin up and down far too often. By changing the power settings this can be fixed, using the command:</p>
<blockquote><p><code>hdparm -B 254 /dev/xxx</code></p></blockquote>
<p>replacing xxx with your drive name, in my case for my SATA drive it was /dev/sda.</p>
<p><code>254</code> here is the lowest level of power management, and <code>255</code> is off completely. You can try playing with higher values if you like some kind of power management.</p>
<p>To make this run every time the computer starts, add it to a startup script. For example, save a plain text file containing the above line to:</p>
<blockquote><p><code>/etc/init.d/local_settings</code></p></blockquote>
<p>Then:</p>
<blockquote><p><code><br />
cd /etc/init.d<br />
sudo chmod +x local_settings<br />
sudo ln -s local_settings /etc/rc2.d/S99local_settings<br />
</code></p></blockquote>
<p>This makes the file executable, and creates a symbolic link to it in the folder which contains the start-up scripts, giving it priority 99.</p>
<p>Hopefully your clicking noise will now be gone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionshrimp.com/2008/05/laptop-hard-drive-clicking-in-hardy/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
