<?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"
	>

<channel>
	<title>John Hunt</title>
	<atom:link href="http://john-hunt.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://john-hunt.com</link>
	<description>Linux, web design / programming and technology.</description>
	<pubDate>Sun, 20 Jul 2008 00:51:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>revalidation failed (errorno =-5)</title>
		<link>http://john-hunt.com/linux/2008/07/20/revalidation-failed-errorno-5/</link>
		<comments>http://john-hunt.com/linux/2008/07/20/revalidation-failed-errorno-5/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 00:13:45 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://john-hunt.com/?p=148</guid>
		<description><![CDATA[If you find your system isn&#8217;t booting sometimes and you get this funny error message, edit your kernel boot line in /boot/grub/menu.lst:

kernel /boot/vmlinuz-2.6.24-19-generic root=UUID=75a92494-bdae-4715-92d9-f06d1887008e ro all_generic_ide

e.g - Add the all_generic_ide parameter. All should be fine once again. I believe this is a strange Ubuntu kernel bug, although I&#8217;m not sure.
]]></description>
			<content:encoded><![CDATA[<p>If you find your system isn&#8217;t booting sometimes and you get this funny error message, edit your kernel boot line in /boot/grub/menu.lst:</p>
<p><code><br />
kernel /boot/vmlinuz-2.6.24-19-generic root=UUID=75a92494-bdae-4715-92d9-f06d1887008e ro all_generic_ide<br />
</code></p>
<p>e.g - Add the all_generic_ide parameter. All should be fine once again. I believe this is a strange Ubuntu kernel bug, although I&#8217;m not sure.</p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/07/20/revalidation-failed-errorno-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MKV (h.264) playback on XBOX360</title>
		<link>http://john-hunt.com/linux/2008/07/18/mkv-h264-playback-on-xbox360/</link>
		<comments>http://john-hunt.com/linux/2008/07/18/mkv-h264-playback-on-xbox360/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 01:52:31 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[aac]]></category>

		<category><![CDATA[ac3]]></category>

		<category><![CDATA[dts]]></category>

		<category><![CDATA[encode]]></category>

		<category><![CDATA[mkv]]></category>

		<category><![CDATA[movie]]></category>

		<category><![CDATA[mp4]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[xbox360]]></category>

		<guid isPermaLink="false">http://john-hunt.com/?p=144</guid>
		<description><![CDATA[While it&#8217;s not possible to play mkv files directly on the xbox360, you only need to do a few things to remux the video and audio streams into the mp4 format. This means that no re-encoding is done with the video, therefore there is no loss in video quality.
At the time of writing, the xbox360 [...]]]></description>
			<content:encoded><![CDATA[<p>While it&#8217;s not possible to play mkv files directly on the xbox360, you only need to do a few things to remux the video and audio streams into the mp4 format. This means that no re-encoding is done with the video, therefore there is no loss in video quality.</p>
<p>At the time of writing, the xbox360 doesn&#8217;t support anything other than 2 channel AAC audio for mp4 streams, so you&#8217;ll have to put up with that. It does work well though.</p>
<p><strong>1. Gather video information</strong><br />
<code>mkvinfo movie.mkv</code><br />
Look for things like the following:<br />
<code><br />
|+ Segment tracks<br />
| + A track<br />
|  + Track number: 1<br />
|  + Track UID: 1<br />
|  + Track type: video<br />
- snip -<br />
|  + Default duration: 41.708ms (23.976 fps for a video track)<br />
</code><br />
This shows us track 1 is the video stream. Remember that, it&#8217;ll come in handy later. Also, make a note of the fps, if you get the FPS wrong later you&#8217;ll have a/v sync issues. Generally track 1 is always the video stream and track 2 is always the main audio stream:</p>
<p><code><br />
| + A track<br />
|  + Track number: 2<br />
|  + Track UID: 445320639<br />
|  + Track type: audio<br />
- snip -<br />
|  + Name: Main audio DTS 1536<br />
|  + Audio track<br />
|   + Sampling frequency: 48000.000000<br />
|   + Channels: 6<br />
</code></p>
<p>Make a note of whether you&#8217;re dealing with a DTS stream (as in my example) or an AC3 stream. There is a newer format ACC3 or something..I don&#8217;t know much about that.</p>
<p><strong>2. Extract the video and audio streams from the mkv</strong><br />
Remember, mkv and mp4 are just like avi (in some ways.) They are all container formats, not the actual video itself. Now we extract the audio and video streams we want. If you like you could choose different audio and video streams you discovered using mkvinfo.</p>
<p>Extract the video:<br />
<code><br />
mkvextract tracks movie.mkv 1:video.h264<br />
</code></p>
<p>Next we have to do something quite strange in order to make our h.264 file compatible with the xbox360. Run hexedit video.h264 and change the sequence: &#8220;67 64 00 33&#8243; to &#8220;67 64 00 29&#8243;.</p>
<p>Now we have our video file ready for muxing, we need to deal with the audio stream:</p>
<p><code>mplayer movie.mkv -novideo -ao pcm:fast:file=audiodump.wav -channels 2</code></p>
<p>This gets the audio from the mkv file and saves it as audiodump.wav ready for re encoding using nero&#8217;s AACenc program (<a href="http://www.nero.com/eng/down-ndaudio.php">http://www.nero.com/eng/down-ndaudio.php</a>):</p>
<p><strong>3. Encode the audio dump to AAC format</strong><br />
Now we encode the wav file to AAC:</p>
<p><code>neroAacEnc -lc -ignorelength -q 0.50 -if audiodump.wav -of audio.m4a</code></p>
<p>Both the audio and video streams are now ready to be muxed (put together) by MP4Box:</p>
<p><strong>4. Mux the files</strong></p>
<p>Remember to use the correct FPS value we obtained using mkvinfo from earlier!</p>
<p>MP4Box -new output.mp4 -add video.h264 -add audio.m4a -fps 23.976</p>
<p>output.mp4 is now ready to watch!!</p>
<p><strong>Footnotes:</strong><br />
1. I didn&#8217;t have any luck getting windows media player 11 to stream the mp4&#8217;s to my xbox, I got the all to common &#8216;format not supported&#8217; thing on the xbox even though they played just fine on WMP11.</p>
<p>2. You&#8217;ll want to split your original MKV into just under 4GB chunks if you&#8217;re putting the files on anything other than DVD5/DVD9. Do this:<br />
<code>mkvmerge -o output_part.mkv --split 3900M movie.mkv</code></p>
<p>*note - we leave it just under 4000M for two reasons, firstly fat32 can&#8217;t store eactly 4GB, secondly I&#8217;m not sure if it&#8217;s GiB or GB&#8230;!</p>
<p>3. Special thanks to Mike from <a href="http://www.linuxlove.info/site/17/converting-remuxing-a-mkv-for-playback-on-the-xbox-360/">Linux Love</a>. For some tips that actually worked!</p>
<p>4. I&#8217;m not sure if there&#8217;s an artificial limit on the file size of mp4s that can be played back, but I will know by this afternoon!</p>
<p><strong>Update:</strong><br />
It appears as though the xbox360 doesn&#8217;t like any media files > 4GB, a bit of a shame really. Hopefully the next dashboard update will fix these issues. Until then, looks like we&#8217;ll have to put up with split files.</p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/07/18/mkv-h264-playback-on-xbox360/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Banshee 1.0</title>
		<link>http://john-hunt.com/linux/2008/06/16/banshee-10/</link>
		<comments>http://john-hunt.com/linux/2008/06/16/banshee-10/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 08:38:08 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[banshee]]></category>

		<category><![CDATA[media player]]></category>

		<category><![CDATA[mono]]></category>

		<category><![CDATA[podcast]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://john-hunt.com/linux/2008/06/16/banshee-10/</guid>
		<description><![CDATA[Once in a while, a fantastic piece of open source software comes along. Just the other day, banshee 1.0 was released. I must say, I&#8217;m *very* impressed. It&#8217;s like a much better, really great iTunes. With the addition of video it now covers pretty much everything I wanted in a media player thingi for Linux.
Check [...]]]></description>
			<content:encoded><![CDATA[<p>Once in a while, a fantastic piece of open source software comes along. Just the other day, banshee 1.0 was released. I must say, I&#8217;m *very* impressed. It&#8217;s like a much better, really great iTunes. With the addition of video it now covers pretty much everything I wanted in a media player thingi for Linux.</p>
<p>Check it out: <a href="http://http://banshee-project.org/download/archives/1.0.0/">Banshee 1.0!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/06/16/banshee-10/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu UK Podcast</title>
		<link>http://john-hunt.com/linux/2008/03/27/ubuntu-uk-podcast/</link>
		<comments>http://john-hunt.com/linux/2008/03/27/ubuntu-uk-podcast/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 06:44:23 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[podcast]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://john-hunt.com/linux/2008/03/27/ubuntu-uk-podcast/</guid>
		<description><![CDATA[The Ubuntu UK Podcast show was recently established, someone I met from HantsLUG hosts it and it&#8217;s pretty interesting for those of you who are Ubuntu users. Check it out!
Ubuntu UK Podcast
]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://podcast.ubuntu-uk.org/">Ubuntu UK Podcast</a> show was recently established, someone I met from <a href="http://www.hants.lug.org.uk/">HantsLUG</a> hosts it and it&#8217;s pretty interesting for those of you who are Ubuntu users. Check it out!</p>
<p><a href="http://podcast.ubuntu-uk.org/">Ubuntu UK Podcast</a></p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/03/27/ubuntu-uk-podcast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP-Clearsilver installation guide for Ubuntu/Debian</title>
		<link>http://john-hunt.com/linux/2008/03/27/php-clearsilver-installation-guide-for-ubuntudebian/</link>
		<comments>http://john-hunt.com/linux/2008/03/27/php-clearsilver-installation-guide-for-ubuntudebian/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 06:39:45 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[clearsilver]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[templating]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://john-hunt.com/linux/2008/03/27/php-clearsilver-installation-guide-for-ubuntudebian/</guid>
		<description><![CDATA[I updated my php-clearsilver installation guide today after discovering it&#8217;s wrong in a few places. Fortunately, I don&#8217;t think anyone&#8217;s ever used it (apart from me today.)
If you know what clearsilver is and you use php, you might find it interesting.
Installing PHP Clearsilver module for apache on Ubuntu and Debian
]]></description>
			<content:encoded><![CDATA[<p>I updated my php-clearsilver installation guide today after discovering it&#8217;s wrong in a few places. Fortunately, I don&#8217;t think anyone&#8217;s ever used it (apart from me today.)</p>
<p>If you know what clearsilver is and you use php, you might find it interesting.</p>
<p><a href="http://john-hunt.com/wiki/doku.php/clearsilver-php">Installing PHP Clearsilver module for apache on Ubuntu and Debian</a></p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/03/27/php-clearsilver-installation-guide-for-ubuntudebian/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating a bridge for VirtualBox / wireless bridging on Ubuntu</title>
		<link>http://john-hunt.com/linux/2008/03/17/creating-a-bridge-for-virtualbox-wireless-bridging-on-ubuntu/</link>
		<comments>http://john-hunt.com/linux/2008/03/17/creating-a-bridge-for-virtualbox-wireless-bridging-on-ubuntu/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 08:43:00 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[bridge]]></category>

		<category><![CDATA[networking]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[virtualbox]]></category>

		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://john-hunt.com/linux/2008/03/17/creating-a-bridge-for-virtualbox-wireless-bridging-on-ubuntu/</guid>
		<description><![CDATA[Following several guides on setting up a bridge on my laptop between the wireless network interface and VirtualBox for direct networking was simply not working for me. Today after lots of head scratching I finally discovered why.
Turns out that the standard bridge utils are no good for most wireless cards, but there is a workaround.
Check [...]]]></description>
			<content:encoded><![CDATA[<p>Following several guides on setting up a bridge on my laptop between the wireless network interface and VirtualBox for direct networking was simply not working for me. Today after lots of head scratching I finally discovered why.</p>
<p>Turns out that the standard bridge utils are no good for most wireless cards, but there is a workaround.</p>
<p>Check out this guide, and read under the wireless section:<br />
<a href="http://home.nyc.rr.com/computertaijutsu/vboxbridge.html">Bridged Networking with VirtualBox on Linux Hosts</a></p>
<p>What you can do is add those various commands to a little script file in /etc/network/if-up.d/ which will set up the &#8216;bridge&#8217; upon starting networking.</p>
<p>Woohoo!</p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/03/17/creating-a-bridge-for-virtualbox-wireless-bridging-on-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ripping copy protected DVDs on linux (ripguard, puppetlock, arccos etc)</title>
		<link>http://john-hunt.com/linux/2008/03/05/ripping-copy-protected-dvds-on-linux-ripguard-puppetlock-arccos-etc/</link>
		<comments>http://john-hunt.com/linux/2008/03/05/ripping-copy-protected-dvds-on-linux-ripguard-puppetlock-arccos-etc/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 05:24:22 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[arccos]]></category>

		<category><![CDATA[copy protection]]></category>

		<category><![CDATA[dvd]]></category>

		<category><![CDATA[puppetlock]]></category>

		<category><![CDATA[rip]]></category>

		<category><![CDATA[ripguard]]></category>

		<category><![CDATA[ripping]]></category>

		<guid isPermaLink="false">http://john-hunt.com/linux/2008/03/05/ripping-copy-protected-dvds-on-linux-ripguard-puppetlock-arccos-etc/</guid>
		<description><![CDATA[Unfortunately, you can&#8217;t!!! Well, not as far as I can tell, I&#8217;ve asked around and scoured the web but it seems there&#8217;s no use, there simply isn&#8217;t a way to do it on linux. The next best thing is to use DVDFab for windows via Wine (it kind of semi-officially works with Wine).
As I found [...]]]></description>
			<content:encoded><![CDATA[<p>Unfortunately, you can&#8217;t!!! Well, not as far as I can tell, I&#8217;ve asked around and scoured the web but it seems there&#8217;s no use, there simply isn&#8217;t a way to do it on linux. The next best thing is to use DVDFab for windows via Wine (it kind of semi-officially works with Wine).</p>
<p>As I found nothing really solid on google, I thought I&#8217;d write this post as it&#8217;s annoying when you can&#8217;t find anything.</p>
<p><a href="http://www.dvdfab.com/">DVDFab</a></p>
<p>How infuriating! What a great way to encourage people to illegally download things instead of buying them. I wonder when (or if) these movie studios will ever learn that it&#8217;s a really dumb idea to stop people having total control over things they buy.</p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/03/05/ripping-copy-protected-dvds-on-linux-ripguard-puppetlock-arccos-etc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Convert a bunch of pngs to gifs with imagemagick</title>
		<link>http://john-hunt.com/uncategorized/2008/02/28/convert-a-bunch-of-pngs-to-gifs-with-imagemagick/</link>
		<comments>http://john-hunt.com/uncategorized/2008/02/28/convert-a-bunch-of-pngs-to-gifs-with-imagemagick/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 03:05:33 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[gif]]></category>

		<category><![CDATA[ie6]]></category>

		<category><![CDATA[imagemagick]]></category>

		<category><![CDATA[png]]></category>

		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://john-hunt.com/uncategorized/2008/02/28/convert-a-bunch-of-pngs-to-gifs-with-imagemagick/</guid>
		<description><![CDATA[Just a handy one for the IE6 png support:
for i in `ls`; do x=`basename $i .png`; convert $i $x.gif; done
]]></description>
			<content:encoded><![CDATA[<p>Just a handy one for the IE6 png support:<br />
<code>for i in `ls`; do x=`basename $i .png`; convert $i $x.gif; done</code></p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/uncategorized/2008/02/28/convert-a-bunch-of-pngs-to-gifs-with-imagemagick/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fluid horizontal list based highlighting menu with icons</title>
		<link>http://john-hunt.com/programming/2008/02/28/fluid-horizontal-list-based-highlighting-menu-with-icons/</link>
		<comments>http://john-hunt.com/programming/2008/02/28/fluid-horizontal-list-based-highlighting-menu-with-icons/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 02:18:00 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[fluid]]></category>

		<category><![CDATA[horizontal]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[icons]]></category>

		<category><![CDATA[li]]></category>

		<category><![CDATA[list]]></category>

		<category><![CDATA[markup]]></category>

		<category><![CDATA[menu]]></category>

		<category><![CDATA[ul]]></category>

		<guid isPermaLink="false">http://john-hunt.com/programming/2008/02/28/fluid-horizontal-list-based-highlighting-menu-with-icons/</guid>
		<description><![CDATA[No doubt it&#8217;s been done elsewhere, but I spent quite a while trying to get this one working. Basically I wanted a horizontal css menu with decent markup and no hacks. I also wanted to have nice icons for each item correctly vertically aligned. On top of that I wanted the whole thing to be [...]]]></description>
			<content:encoded><![CDATA[<p>No doubt it&#8217;s been done elsewhere, but I spent quite a while trying to get this one working. Basically I wanted a horizontal css menu with decent markup and no hacks. I also wanted to have nice icons for each item correctly vertically aligned. On top of that I wanted the whole thing to be fluid so it would look right at any text size. Unfortunately because of IE6&#8217;s lack of support for :hover on anything but links I needed to use containing spans for the text on each list item (doh!) I guess you could use javascript or something instead, but that&#8217;d be really horrid!</p>
<p>After a lot of hair pulling, I finally got it to work:<br />
<img src='http://john-hunt.com/wp-content/uploads/2008/02/menu1.png' alt='Menu' /></p>
<pre>
#navigation ul {
  margin:               0;
  padding:              0;
  background-color:     #eee;
  height:               2em;
  border-bottom:        1px solid #888;
}

#navigation li {
  float:                left;
  list-style-type:      none;
  border-right:         1px solid #888;
}

#navigation a {
  float:                left;
  margin:               0;
  background-repeat:    no-repeat;
  background-position:  5px 50%;
  text-decoration:      none;
  color:                #333;
}

#navigation .inner {
  padding:              0 .4em 0 26px;  /* Adjust based on the width of icon + 10px */
  display:              inline;
  line-height:          2em;
  vertical-align:       middle;
}

#navigation .contacts {
  background-image: url(/crm/resources/icons/contacts.png)
}

#navigation .activities {
  background-image: url(/crm/resources/icons/activities.png)
}

#navigation .reports {
  background-image: url(/crm/resources/icons/reports.png)
}

#navigation .utilities {
  background-image: url(/crm/resources/icons/utilities.png)
}

#navigation a:hover {
  background-color:         #fff;
}</pre>
<p>And here&#8217;s the HTML:</p>
<pre>
&lt;div id="navigation"&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;a href="" class="contacts"&gt;&lt;span class="inner"&gt;Contacts&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="" class="activities"&gt;&lt;span class="inner"&gt;Activities&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="" class="reports"&gt;&lt;span class="inner"&gt;Reports&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="" class="utilities"&gt;&lt;span class="inner"&gt;Utilities&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>*I got my icons from the fantastic <a href="http://www.famfamfam.com">FamFamFam</a> web site. This guy gives away loads of great icons for free. You might want to convert them to transparent gifs though as obviously IE6- won&#8217;t handle the transparency in the PNGs.</p>
<p>I&#8217;m no css expert, so if you can see anything silly in the css/markup or know of some way of improving this, please drop me a comment! </p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/programming/2008/02/28/fluid-horizontal-list-based-highlighting-menu-with-icons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cron gotcha</title>
		<link>http://john-hunt.com/linux/2008/02/14/cron-gotcha/</link>
		<comments>http://john-hunt.com/linux/2008/02/14/cron-gotcha/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 04:28:24 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[cron]]></category>

		<category><![CDATA[filename]]></category>

		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://john-hunt.com/linux/2008/02/14/cron-gotcha/</guid>
		<description><![CDATA[While pondering why my backup scripts weren&#8217;t working in /etc/cron.daily, I remembered that run-parts (the thing that runs stuff in that directory) doesn&#8217;t like running scripts with a .sh, or indeed probably any extension on them.
Handy to remember that one!
]]></description>
			<content:encoded><![CDATA[<p>While pondering why my backup scripts weren&#8217;t working in /etc/cron.daily, I remembered that run-parts (the thing that runs stuff in that directory) doesn&#8217;t like running scripts with a .sh, or indeed probably any extension on them.</p>
<p>Handy to remember that one!</p>
]]></content:encoded>
			<wfw:commentRss>http://john-hunt.com/linux/2008/02/14/cron-gotcha/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
