<?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>The Think Tank</title>
	<atom:link href="http://cdal.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://cdal.co.uk</link>
	<description>Musings, Wonders and Thoughts</description>
	<lastBuildDate>Mon, 27 Jun 2011 20:57:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Command to convert folder(s) of .MTS to .mp4 for editing</title>
		<link>http://cdal.co.uk/2011/06/21/command-to-convert-folders-of-mts-to-mp4-for-editing/</link>
		<comments>http://cdal.co.uk/2011/06/21/command-to-convert-folders-of-mts-to-mp4-for-editing/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 07:56:14 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[gnome script]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[mts]]></category>
		<category><![CDATA[nautilus]]></category>
		<category><![CDATA[nautilus-scripts]]></category>
		<category><![CDATA[transcode]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu-restricted-extras]]></category>
		<category><![CDATA[x264]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=243</guid>
		<description><![CDATA[For this command to run correctly every .MTS file that has been split in multiple .MTS files by the camera (for example where the recording size has exceeded 2.0GB and the camera has automatically split it into mulitple files) these files need to be concatenated back into a single file. This can be done manually <a href='http://cdal.co.uk/2011/06/21/command-to-convert-folders-of-mts-to-mp4-for-editing/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>For this command to run correctly every .MTS file that has been split in multiple .MTS files by the camera (for example where the recording size has exceeded 2.0GB and the camera has automatically split it into mulitple files) these files need to be concatenated back into a single file.</p>
<p>This can be done manually by:</p>
<blockquote><p>cat secondFile &gt;&gt; firstFile<br />
cat thirdFile &gt;&gt; firstFile</p></blockquote>
<p>and so on..</p>
<p>If you want a GUI way of doing this you can use this nautilus script I edited from the one found here:</p>
<blockquote><p>cfn=$1<br />
shift;<br />
for arg<br />
do<br />
cat &#8220;$arg&#8221; &gt;&gt; &#8220;$cfn&#8221;<br />
mv &#8220;$arg&#8221; ~/.local/share/Trash/files/<br />
done</p></blockquote>
<p>Open your favourite text editor and copy and paste the above code in and save it in the following location</p>
<blockquote><p>~/.gnome2/nautilus-scripts/Concatenate</p></blockquote>
<p>You should now be able to right click several .MTS files and select Scripts &gt; Concatenate. The machine will then concatenate the files and move the unessential  .MTS files to your Trash / Waste Basket. You&#8217;ll know the concatenation is complete when the last file in the series appears in your waste basket/disappears from it&#8217;s original folder.</p>
<p>Before transcoding the .MTS files we need to install some programs to help with the transcoding:</p>
<blockquote><p>sudo apt-get install ubuntu-restricted-extras x264</p></blockquote>
<p>With the concatenation complete (if necessary) and everything we need installed, you can now run the following command to transcode the .MTS files into .MP4 files that can be used and editied without sync issues on Ubuntu.</p>
<p>find /location/of/MTS/files -name &#8220;*.MTS&#8221; -type f -exec ffmpeg -i {} -vcodec libx264 -vpre hq -crf 19 -threads 0 -deinterlace -acodec copy {}.mp4 \;</p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2011/06/21/command-to-convert-folders-of-mts-to-mp4-for-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find your mac address / How to get your mac address into a variable using a batch file or the command line in Windows XP</title>
		<link>http://cdal.co.uk/2011/01/24/how-to-find-your-mac-address-how-to-get-your-mac-address-into-a-variable-using-a-batch-file-or-the-command-line-in-windows-xp/</link>
		<comments>http://cdal.co.uk/2011/01/24/how-to-find-your-mac-address-how-to-get-your-mac-address-into-a-variable-using-a-batch-file-or-the-command-line-in-windows-xp/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 13:34:01 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac address]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[variable]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=237</guid>
		<description><![CDATA[In a batch file : ﻿﻿﻿for /f &#8220;tokens=3 delims=,&#8221; %%a in (&#8216;&#8221;getmac /v /fo csv &#124; findstr Local&#8221;&#8216;) do set mac=%%a Value of mac address is now accessible in %mac% From the normal command line: ﻿﻿﻿for /f &#8220;tokens=3 delims=,&#8221; %a in (&#8216;&#8221;getmac /v /fo csv &#124; findstr Local&#8221;&#8216;) do set mac=%a Value of mac address <a href='http://cdal.co.uk/2011/01/24/how-to-find-your-mac-address-how-to-get-your-mac-address-into-a-variable-using-a-batch-file-or-the-command-line-in-windows-xp/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>In a batch file :</p>
<blockquote><p>﻿﻿﻿for /f &#8220;tokens=3 delims=,&#8221; %%a in (&#8216;&#8221;getmac /v /fo csv | findstr Local&#8221;&#8216;) do set mac=%%a</p></blockquote>
<p>Value of mac address is now accessible in %mac%</p>
<p>From the normal command line:</p>
<blockquote><p>﻿﻿﻿for /f &#8220;tokens=3 delims=,&#8221; %a in (&#8216;&#8221;getmac /v /fo csv | findstr Local&#8221;&#8216;) do set mac=%a</p></blockquote>
<p>Value of mac address is now accessible in %mac%</p>
<p>Note the single &#8216;%&#8217; when used from the command line instead of double &#8216;%&#8217; when used in a batch file as above. the getmac utility ships with windows XP so the above script should be good to go. I&#8217;ve tried and can confirm this works on XP SP3.</p>
<p>The above scripts are modified from <a href="http://groups.google.com/group/microsoft.public.win2000.cmdprompt.admin/browse_thread/thread/061f9a4345017a44?pli=1">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2011/01/24/how-to-find-your-mac-address-how-to-get-your-mac-address-into-a-variable-using-a-batch-file-or-the-command-line-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert .MTS files to .AVI in Ubuntu using ffmpeg</title>
		<link>http://cdal.co.uk/2010/11/22/how-to-convert-mts-files-to-avi-in-ubuntu-using-ffmpeg/</link>
		<comments>http://cdal.co.uk/2010/11/22/how-to-convert-mts-files-to-avi-in-ubuntu-using-ffmpeg/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 22:04:37 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[bulk]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[jvc]]></category>
		<category><![CDATA[mts]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sony]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=228</guid>
		<description><![CDATA[Just a quick post. If you want to bulk convert .MTS files (from JVC or Sony HD camcorders) then you can use the below script: You&#8217;ll need csh and ffmpeg installed: sudo apt-get install csh ffmpeg Make a new file called convert (I use joe but you can use nano or whatever you prefer) joe <a href='http://cdal.co.uk/2010/11/22/how-to-convert-mts-files-to-avi-in-ubuntu-using-ffmpeg/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Just a quick post. If you want to bulk convert .MTS files (from JVC or Sony HD camcorders) then you can use the below script:</p>
<p>You&#8217;ll need csh and ffmpeg installed:</p>
<blockquote><p>sudo apt-get install csh ffmpeg</p></blockquote>
<p>Make a new file called convert (I use joe but you can use nano or whatever you prefer)</p>
<blockquote><p>joe convert</p></blockquote>
<p>Copy and paste the below:</p>
<blockquote>
<div id="_mcePaste">#!/bin/csh</div>
<div id="_mcePaste"># For NTSC change -fps 50 tp -fps 60000/1001 below</div>
<div id="_mcePaste">foreach f ($*)</div>
<div id="_mcePaste">ffmpeg -i $f -threads 4 -deinterlace -f avi  -r 25 -vcodec libxvid -vtag XVID  -s 1920&#215;1080  -aspect 16:9 -maxrate 1800k -b 1500k -qmin 3 -qmax 5 -bufsize 4096 -mbd 2 -bf 2 -flags +4mv -trellis -aic -cmp 2 -subcmp 2 -g 300 -acodec libmp3lame -ar 48000 -ab 128k -ac 2 -o ${f:r}.avi</div>
<div>end</div>
</blockquote>
<div>Make the file executable:</div>
<blockquote>
<div>chmod +x convert</div>
</blockquote>
<div>Convert your .MTS files:</div>
<blockquote>
<div>./convert *.MTS</div>
</blockquote>
<div>Done!</div>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/11/22/how-to-convert-mts-files-to-avi-in-ubuntu-using-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Setting up Munin on Ubuntu 10.04</title>
		<link>http://cdal.co.uk/2010/10/22/setting-up-munin-on-ubuntu-10-04/</link>
		<comments>http://cdal.co.uk/2010/10/22/setting-up-munin-on-ubuntu-10-04/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 11:16:34 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[=]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[munin]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=221</guid>
		<description><![CDATA[Server setup (as root): apt-get install apache2 munin munin-node munin-plugins-extra munin-libvirt-plugins munin-java-plugins a2dissite default Edit munin apache config to enable stats to be veiwed from anywhere: joe /etc/apache2/conf.d/munin change Allow localhost 127.0.0.1/8 ::1 line to: allow all Restart apache2: /etc/init.d/apache2 restart Setup hosts we want to monitor in /etc/munin/munin.conf . For each host we need to <a href='http://cdal.co.uk/2010/10/22/setting-up-munin-on-ubuntu-10-04/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Server setup (as root):</p>
<blockquote><p>apt-get install apache2 munin munin-node munin-plugins-extra munin-libvirt-plugins munin-java-plugins</p>
<p>a2dissite default</p></blockquote>
<p>Edit munin apache config to enable stats to be veiwed from anywhere:</p>
<blockquote><p>joe /etc/apache2/conf.d/munin</p></blockquote>
<p>change Allow localhost 127.0.0.1/8 ::1 line to:</p>
<blockquote><p>allow all</p></blockquote>
<p>Restart apache2:</p>
<blockquote><p>/etc/init.d/apache2 restart</p></blockquote>
<p>Setup hosts we want to monitor in /etc/munin/munin.conf . For each host we need to add a section that&#8217;s similar to the following:</p>
<blockquote><p>[hostname]</p>
<p>address ipaddress</p>
<p>use_node_name yes</p></blockquote>
<p>Now on each server we defined in the last step (including the munin server itself) we need to ssh into them and setup munin  node:</p>
<blockquote><p>apt-get install munin-node munin-plugins-extra munin-libvirt-plugins munin-java-plugins</p></blockquote>
<p>Allow access from the munin server:</p>
<blockquote><p>joe /etc/munin/munin-node.conf</p></blockquote>
<p>Add:</p>
<blockquote><p>allow ^192\.168\.0\.1$</p></blockquote>
<p>where 192.168.0.1 is the ipaddress of your munin server.</p>
<p>Restart the munin node:</p>
<blockquote><p>/etc/init.d/munin-node restart</p></blockquote>
<p>Open up a web browser and navigate to:</p>
<blockquote><p>addressOfMuninServer/munin</p></blockquote>
<p>This should present you with a webpage with all your configured nodes. Click on them to get stats/charts about the nodes. NB Munin can take up to 5 minutes to collect stats so if you&#8217;ve got nothing coming up wait 5 minutes. If you&#8217;ve still got nothing then you&#8217;ve probably got a configuration problem.</p>
<p>The Munin install differs on 10.04 Lucid as the install configures it&#8217;s own virtual host, which in previous versions of Ubuntu it never use to. The virtual host the Munin install provides is only accessible to the localhost hence the need for the configuration change.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/10/22/setting-up-munin-on-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to get EIT working with MythTV; MythTV Satalite EIT Woes</title>
		<link>http://cdal.co.uk/2010/06/22/how-to-getmythtv-satalite-eit-woes/</link>
		<comments>http://cdal.co.uk/2010/06/22/how-to-getmythtv-satalite-eit-woes/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 08:40:59 +0000</pubDate>
		<dc:creator>Sebastian Harrington</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dvb-s]]></category>
		<category><![CDATA[dvb-s2]]></category>
		<category><![CDATA[dvt_multiplex]]></category>
		<category><![CDATA[eit]]></category>
		<category><![CDATA[mythtv]]></category>
		<category><![CDATA[networkid]]></category>
		<category><![CDATA[no data]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=214</guid>
		<description><![CDATA[At work we&#8217;ve got a MythTV (mythbuntu) server with 2x DVB-S and 2x DVB-S2 cards. For a while I struggled away at trying to get the tv grabber to collect tv lisitings but it required me to configure each channel individually, not a pain if it&#8217;s a one off but for some reason I found <a href='http://cdal.co.uk/2010/06/22/how-to-getmythtv-satalite-eit-woes/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>At work we&#8217;ve got a MythTV (mythbuntu) server with 2x DVB-S and 2x DVB-S2 cards.</p>
<p>For a while I struggled away at trying to get the tv grabber to collect tv lisitings but it required me to configure each channel individually, not a pain if it&#8217;s a one off but for some reason I found myself doing it more often than not!</p>
<p>So I decided, a switch to EIT listings would be a better bet.</p>
<p>I imported my channels.conf and scanned existing transports, excitedly I clicked on &#8216;Listings&#8217; expecting to see a full data guide but all I was greeted with was &#8220;NO DATA&#8221; for every channel.</p>
<p>After a bit of googling I found a command that let me see what the EIT scanner was up to under the hood so I issued the following:</p>
<blockquote><p>/etc/init.d/mythtv-backend stop</p></blockquote>
<blockquote><p>mythbackend -v siparser,eit,channel</p></blockquote>
<p>This allowed me to see exactly what was happening under the hood. Alas it looked as if it was scanning for channels fine but there were no informative error messages. Back to google.</p>
<p>After reading some more I found out about <a href="http://cvs.mythtv.org/trac/ticket/7701" target="_blank">this bug</a> which meant when channels were imported via a channels.conf (not detected directly by mythtv) it would lose or not detect it&#8217;s network id.</p>
<p>So to see if I was being affected by this bug I opened up phpmyadmin and navigated to the mythconverg database and looked in the dvt_multiplex table. Sure enough under the networkid column all of the values were set to NULL.</p>
<p>So on to fixing it. I noted down the frequency and polarity from the dvt_multiplex table so I could access the values when the mythbackend was down. I opened up mythtv-setup and removed all the channels from the EIT source then under &#8216;Video Source&#8217; scanned for new channels using a Full tunned scan, substituting in the values from the dvt_multiplex table. I waited for the scan to finish and when it had, I added the channels and ran mythfilldatabase for good luck.</p>
<p>After this I checked the dvt_multiplex table again and instead of a networkid of NULL there was a value of 2! Looking at the listings page confirmed that the EIT scanning was now working and this was also confirmed with the output of mythbackend -v siparser,eit,channel.</p>
<p>In hind sight a better way to have done this would have been to dump the SQL of the database, remove the channels in mythtv-setup, rescan using a full tuned scan using information from the dvt_multiplex table, add the channels, look at the dvt_multiplex table find the value of networkid copy it (I&#8217;m assuming it&#8217;s the same for all) reimport your database and change the value of networkid, in my case:</p>
<blockquote><p>mysql &gt; UPDATE set dvt_multiplex.networkid = &#8217;2&#8242;;</p></blockquote>
<p>Doing it this way means you don&#8217;t have to setup your channels a second time, but if you&#8217;re well practised at it like me (with a little help from a few scripts ;o)) then it&#8217;s probably quicker to do it the first way.</p>
<p>As a side note I have Use DishNet&#8217;s long term EIT data set to ON, cross EIT data sources set to OFF and use Quick Tuning set to never. I have no idea if these options make a difference but some of the googling I have done infers that it might!</p>
<p>Anyway I hope this helps someone and saves them some time!</p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/06/22/how-to-getmythtv-satalite-eit-woes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Network problems after a Ubuntu 10.04 Lucid Lynx install and what fixed them for me</title>
		<link>http://cdal.co.uk/2010/05/01/network-problems-after-a-ubuntu-10-04-lucid-lynx-install-and-what-fixed-them-for-me/</link>
		<comments>http://cdal.co.uk/2010/05/01/network-problems-after-a-ubuntu-10-04-lucid-lynx-install-and-what-fixed-them-for-me/#comments</comments>
		<pubDate>Sat, 01 May 2010 02:30:19 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wired]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=205</guid>
		<description><![CDATA[After installing from a live CD where there was no problem with the network, I was supprised to boot a fresh install of Ubuntu 10.04 lucid lynx, with no network access. Fair enough, I thought probably just a one off, my PC. However after my work mate also had trouble with the network after a <a href='http://cdal.co.uk/2010/05/01/network-problems-after-a-ubuntu-10-04-lucid-lynx-install-and-what-fixed-them-for-me/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>After installing from a live CD where there was no problem with the network, I was supprised to boot a fresh install of Ubuntu 10.04 lucid lynx, with no network access. Fair enough, I thought probably just a one off, my PC. However after my work mate also had trouble with the network after a fresh install where the network was working on the live cd before hand I decided that something must be afoot.</p>
<p>Anyways this is how I fixed my network problem, hopefully it&#8217;ll help someone else!</p>
<ol>
<li>Edit /etc/network/interfaces and remove all traces of eth0 (remove both lines)</li>
<li>My Network Manager had failed to start at all so to manage the network connections open up System &gt; Preferences &gt; Network Connections</li>
<li>Add a new wired connection. I copied the mac address of my adapter in, although I&#8217;m not sure this actually matters. Click Apply and Save your new connection.</li>
<li>Reboot</li>
</ol>
<p>All being well you should have network-manager running, with a live network connection.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/05/01/network-problems-after-a-ubuntu-10-04-lucid-lynx-install-and-what-fixed-them-for-me/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to set the multiple Nvidia GPUs to auto fan in Ubuntu</title>
		<link>http://cdal.co.uk/2010/03/26/how-to-set-the-multiple-nvidia-gpus-to-auto-fan-in-ubuntu/</link>
		<comments>http://cdal.co.uk/2010/03/26/how-to-set-the-multiple-nvidia-gpus-to-auto-fan-in-ubuntu/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 14:41:43 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[8800GTS]]></category>
		<category><![CDATA[fan speeds]]></category>
		<category><![CDATA[nvclock]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[overheating]]></category>
		<category><![CDATA[SLI]]></category>
		<category><![CDATA[tempreture]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=195</guid>
		<description><![CDATA[Just a quick one. I&#8217;ve recently purchased an additional card to go in my Ubuntu machine, but my cards when set up in SLI were running very hot. Using the information found here I was able to stick one GPU into auto fan mode, however the second GPU would stay at a fixed value and <a href='http://cdal.co.uk/2010/03/26/how-to-set-the-multiple-nvidia-gpus-to-auto-fan-in-ubuntu/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Just a quick one. I&#8217;ve recently purchased an additional card to go in my Ubuntu machine, but my cards when set up in SLI were running very hot.</p>
<p>Using the information found <a href="http://reformedmusings.wordpress.com/2009/01/12/nvidia-17782-linux-drivers-fan-control/">here</a> I was able to stick one GPU into auto fan mode, however the second GPU would stay at a fixed value and be overheating.</p>
<p>Looking at the man page for nvclock I found that you can use a command line switch to list and control individual  GPUs.</p>
<p>First install nvclock and nvclock-gtk</p>
<blockquote><p>sudo apt-get install nvclock nvclock-gtk</p></blockquote>
<p>Secondly open up nvclock-gtk</p>
<blockquote><p>sudo nvclock_gtk</p></blockquote>
<p>You may need to set a fan speed under &#8216;Hardware Monitor&#8217; for each GPU, after you&#8217;ve done this use the following commands</p>
<blockquote><p>nvclock -s</p></blockquote>
<p>This command gives a list of all the (nvidia) GPUs connected to the system.</p>
<blockquote><p>nvclock -c 1 -f -F auto</p>
<p>nvclock -c 2 -f -F auto</p></blockquote>
<p>Repeat the above command for each GPU you want to be put in auto mode. You should now see in nvclock-gtk the fan speeds, under &#8216;Hardware Monitoring&#8217; adjusting up and down, automatically on there own.</p>
<p>If you want this done automatically at login then you can add the commands (one at a time unfortunately, unless you make a script) to your sessions System &gt; Preferences &gt; Startup Application as shown <a href="http://reformedmusings.wordpress.com/2009/01/12/nvidia-17782-linux-drivers-fan-control/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/03/26/how-to-set-the-multiple-nvidia-gpus-to-auto-fan-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barnstormers &#8216;A Night at the Movies&#8217; &#8211; Introduction</title>
		<link>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-introduction/</link>
		<comments>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-introduction/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 16:35:11 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[A Night at the Movies]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Musicals]]></category>
		<category><![CDATA[barnstormers]]></category>
		<category><![CDATA[BATMO]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=184</guid>
		<description><![CDATA[The introduction as shown at last week&#8217;s DVD night. [There is a video that cannot be displayed in this feed. Visit the blog entry to see the video.] Download Introduction Video]]></description>
			<content:encoded><![CDATA[<p>The introduction as shown at last week&#8217;s DVD night.</p>
<p style="text-align: center;">[There is a video that cannot be displayed in this feed. <a href="http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-introduction/">Visit the blog entry to see the video.]</a></p>
<p style="text-align: center;"><a href="http://dl.dropbox.com/u/241147/BSATM/Intro.avi" target="_self">Download Introduction Video</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dl.dropbox.com/u/241147/BSATM/Intro.avi" length="14023130" type="video/x-msvideo" />
		</item>
		<item>
		<title>Barnstormers &#8216;A Night at the Movies&#8217; &#8211; Credits</title>
		<link>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-credits/</link>
		<comments>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-credits/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 16:32:00 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[A Night at the Movies]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Musicals]]></category>
		<category><![CDATA[barnstormers]]></category>
		<category><![CDATA[BATMO]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=182</guid>
		<description><![CDATA[The credits as shown at last week&#8217;s DVD night. [There is a video that cannot be displayed in this feed. Visit the blog entry to see the video.] Download Credits Video]]></description>
			<content:encoded><![CDATA[<p>The credits as shown at last week&#8217;s DVD night.</p>
<p style="text-align: center;">[There is a video that cannot be displayed in this feed. <a href="http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-credits/">Visit the blog entry to see the video.]</a></p>
<p style="text-align: center;"><a href="http://dl.dropbox.com/u/241147/BSATM/Credits.avi" target="_self">Download Credits Video</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-credits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dl.dropbox.com/u/241147/BSATM/Credits.avi" length="31039832" type="video/x-msvideo" />
		</item>
		<item>
		<title>Barnstormers &#8216;A night at the Movies&#8217; &#8211; Out-takes</title>
		<link>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-out-takes/</link>
		<comments>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-out-takes/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 16:27:47 +0000</pubDate>
		<dc:creator>Seb</dc:creator>
				<category><![CDATA[A Night at the Movies]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Musicals]]></category>
		<category><![CDATA[barnstormers]]></category>
		<category><![CDATA[BATMO]]></category>

		<guid isPermaLink="false">http://cdal.co.uk/?p=179</guid>
		<description><![CDATA[The out-takes from last Saturday&#8217;s DVD evening, available to download but I encourage you to buy a DVD from Bert who will have all the footage very shortly! [There is a video that cannot be displayed in this feed. Visit the blog entry to see the video.] Download Out-takes Video]]></description>
			<content:encoded><![CDATA[<p>The out-takes from last Saturday&#8217;s DVD evening, available to download but I encourage you to buy a DVD from Bert who will have all the footage very shortly!</p>
<p style="text-align: center;">[There is a video that cannot be displayed in this feed. <a href="http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-out-takes/">Visit the blog entry to see the video.]</a></p>
<p style="text-align: center;"><a href="http://dl.dropbox.com/u/241147/BSATM/OutakesReal.avi" target="_self">Download Out-takes Video</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cdal.co.uk/2010/02/19/barnstormers-a-night-at-the-movies-out-takes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dl.dropbox.com/u/241147/BSATM/OutakesReal.avi" length="42544736" type="video/x-msvideo" />
		</item>
	</channel>
</rss>

