<?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>Ians Ramblings</title>
	<atom:link href="http://iansramblings.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iansramblings.com</link>
	<description>Ian&#039;s rantings and ramblings</description>
	<lastBuildDate>Mon, 07 May 2012 21:25:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>New Lens</title>
		<link>http://iansramblings.com/2012/05/07/new-lens/</link>
		<comments>http://iansramblings.com/2012/05/07/new-lens/#comments</comments>
		<pubDate>Mon, 07 May 2012 21:25:27 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[nikon lens]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=796</guid>
		<description><![CDATA[Well, I&#8217;ve not bought a new lens for donkeys, so I thought I would go and get a basic 50mm prime, the F1.8 D Nikon. Really glad I did too, it&#8217;s such an easy quick lens to use, I&#8217;ve found it to be exceptionally sharp so far and great fun to play around with the [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve not bought a new lens for donkeys, so I thought I would go and get a basic 50mm prime, the F1.8 D Nikon. Really glad I did too, it&#8217;s such an easy quick lens to use, I&#8217;ve found it to be exceptionally sharp so far and great fun to play around with the kind of depth of field it&#8217;s capable of.</p>
<p><a href="http://farm8.staticflickr.com/7274/7004002654_25035975e6.jpg"><img class="alignnone" title="Spring riding" src="http://farm8.staticflickr.com/7274/7004002654_25035975e6.jpg" alt="" width="334" height="500" /></a></p>
<p>I took this while out and about on my old bike near Calke Abbey just as a test really. Looking forward to using it this weekend if I can get over to a Tudor mansion I have been meaning to visit for a while.</p>
<p><a href="http://farm9.staticflickr.com/8025/7150097093_f13426a512.jpg"><img class="alignnone" title="Flower by the lake" src="http://farm9.staticflickr.com/8025/7150097093_f13426a512.jpg" alt="" width="500" height="334" /></a></p>
<p>I took this to just play with the depth of field and see how the light reflecting on the water would look in the bokeh.</p>
<p>I also found a great <a href="http://www.kenrockwell.com/nikon/5018daf.htm" target="_blank">write up</a><a> on it on the Ken Rockwell site, if anyone reading this is interested in getting a 50mm prime for their Nikon.</a></p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/05/07/new-lens/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/05/07/new-lens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux finding missing dependent so files</title>
		<link>http://iansramblings.com/2012/02/14/linux-finding-missing-dependent-so-files/</link>
		<comments>http://iansramblings.com/2012/02/14/linux-finding-missing-dependent-so-files/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 22:46:11 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[dependencies]]></category>
		<category><![CDATA[libaudio]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=792</guid>
		<description><![CDATA[Have you ever had the issue where you try to launch an application in Linux and you&#8217;re greeted with something like &#8220;error while loading shared libraries: libaudio.so.2: cannot open shared object file: No such file or directory&#8221; Only to then find out there is no package in yum or apt-get called libaudio or anything similar [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever had the issue where you try to launch an application in Linux and you&#8217;re greeted with something like &#8220;<strong>error while loading shared libraries: libaudio.so.2: cannot open shared object file: No such file or directory</strong>&#8221; Only to then find out there is no package in yum or apt-get called libaudio or anything similar that could contain the so file.</p>
<p>There is a command for yum which helps track down the parent package which contains the missing dependency which is: -</p>
<p><code>yum provides */libaudio.so.2 </code></p>
<p><code></code> This will return something like: -</p>
<p><code>[root@castlenix ~]# yum provides */libaudio.so.2<br />
Loaded plugins: fastestmirror, refresh-packagekit<br />
Loading mirror speeds from cached hostfile<br />
* base: mirrors.melbourne.co.uk<br />
* extras: mirrors.melbourne.co.uk<br />
* updates: mirrors.melbourne.co.uk<br />
nas-libs-1.9.2-1.el6.x86_64 : Run-time libraries for NAS<br />
Repo : atrpms<br />
Matched from:<br />
Filename : /usr/lib64/libaudio.so.2</code></p>
<p>So you then need to install the NAS package, so &#8220;yum install nas&#8221; and you will then have your dependent so file.</p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/02/14/linux-finding-missing-dependent-so-files/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/02/14/linux-finding-missing-dependent-so-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whitney Houston</title>
		<link>http://iansramblings.com/2012/02/12/whitney-houston/</link>
		<comments>http://iansramblings.com/2012/02/12/whitney-houston/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 21:59:59 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[rambling]]></category>
		<category><![CDATA[Whitney Houston]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=786</guid>
		<description><![CDATA[Another titan in the music industry has died, seems so strange when the mega stars of your youth pass away. It seems especially sad when they are so massively talented and special to the world. The world has changed in these last 30 years, seems unlikely we will ever see mega stars of the calibre [...]]]></description>
			<content:encoded><![CDATA[<p>Another titan in the music industry has died, seems so strange when the mega stars of your youth pass away. It seems especially sad when they are so massively talented and special to the world. The world has changed in these last 30 years, seems unlikely we will ever see mega stars of the calibre of Whitney Houston and Michael Jackson again.</p>
<p>I think they were born and came to fame just at the point the US was at the height of it&#8217;s global power and influence and their fame and talent spread worldwide like wildfire.</p>
<p>&#8216;Stars&#8217; crop up and fade away in month these days and are often little more than karaoke singers that can help peddle some singles maybe an album or two if they can squeeze them out before the public get bored. This dross of current artists just makes the passing of true stars that much sadder for the world.</p>
<p>How far Whitney&#8217;s performance at the Super bowl in 1991 was from the clown who no one had heard of that was swearing at the Super bowl 2012.</p>
<p>I hope everyone will play Whitney Houston&#8217;s music loud for this week all over the world.</p>
<p><iframe src="https://www.youtube-nocookie.com/embed/IdcKLuRjIX0" frameborder="0" width="420" height="315"></iframe><br />
<iframe src="https://www.youtube-nocookie.com/embed/bJkDDHE6tSM" frameborder="0" width="420" height="315"></iframe><br />
<iframe src="https://www.youtube-nocookie.com/embed/knOGYxQCe2g" frameborder="0" width="420" height="315"></iframe></p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/02/12/whitney-houston/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/02/12/whitney-houston/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script kiddies</title>
		<link>http://iansramblings.com/2012/02/12/script-kiddies/</link>
		<comments>http://iansramblings.com/2012/02/12/script-kiddies/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 00:25:21 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[script kiddy]]></category>
		<category><![CDATA[word press exploit]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=778</guid>
		<description><![CDATA[It seems there is a vulnerability in the wp-css-compress Word Press plugin. Luckily I don&#8217;t have this installed and tend not to use any plugins for this reason. However I have had numerous attempts to exploit this vulnerability against this site, including today from a little script kiddy trying to proxy via the Netherlands. You [...]]]></description>
			<content:encoded><![CDATA[<p>It seems there is a vulnerability in the wp-css-compress Word Press plugin. Luckily I don&#8217;t have this installed and tend not to use any plugins for this reason. However I have had numerous attempts to exploit this vulnerability against this site, including today from a little script kiddy trying to proxy via the Netherlands.</p>
<p>You will see the exploit in your logs looking something like: -</p>
<p><code>/wp-content/plugins/wp-css/wp-css-compress.php?f=../../../../../../../../etc/passwd</code></p>
<p>Clearly the developer that wrote wp-css-compress doesn&#8217;t stop attempts to move out of the web accessible directory and into the etc folder to pull back the system passwd file which will contain the user-names of users on the server making a brute force attack over SSH much more likely to succeed.</p>
<p>So ensure you disable this plugin and keep an eye on your eyes for this kind of activity, and while your at it why not install mod security it defeats a lot of the pleb level hacking you see on a regular bases.</p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/02/12/script-kiddies/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/02/12/script-kiddies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CB550 firing properly</title>
		<link>http://iansramblings.com/2012/02/11/cb550-firing-properly/</link>
		<comments>http://iansramblings.com/2012/02/11/cb550-firing-properly/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 15:57:48 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Cars and Bikes]]></category>
		<category><![CDATA[cb550f super sport]]></category>
		<category><![CDATA[honda cb550]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=773</guid>
		<description><![CDATA[The good ole CB550 is running ok now, breathing properly with it&#8217;s new carb rubber. It&#8217;s quite difficult to start the old girl though, and today I had a real panic, driving into town, she cut out totally. Pulled over started again, then few moments later total cut out. Hmm it really helps when you [...]]]></description>
			<content:encoded><![CDATA[<p>The good ole CB550 is running ok now, breathing properly with it&#8217;s new carb rubber. It&#8217;s quite difficult to start the old girl though, and today I had a real panic, driving into town, she cut out totally. Pulled over started again, then few moments later total cut out.</p>
<p>Hmm it really helps when you actually put petrol in the tank! Although it was only showing 91 miles I had been running the bike stationary trying to diagnose the carb issues and had actually run it out of petrol ! Buffoon.</p>
<p>Once I&#8217;d filled up with a tank full of nice 100 RON V-power she was purring again, I even got a complement for running a great classic!</p>
<p>Well here&#8217;s a (rather long sorry!) video of how the old girl is running now, would be great if any motorcycle experts who happen to come across this page could leave a comment to say whether or not it sounds like it&#8217;s running well / lean / rich.</p>
<p><iframe width="420" height="315" src="https://www.youtube-nocookie.com/embed/6AB1igQ5C5Q" frameborder="0" allowfullscreen></iframe></p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/02/11/cb550-firing-properly/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/02/11/cb550-firing-properly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Old bikes and great pictures</title>
		<link>http://iansramblings.com/2012/02/11/old-bikes-and-great-pictures/</link>
		<comments>http://iansramblings.com/2012/02/11/old-bikes-and-great-pictures/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 23:20:36 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Cars and Bikes]]></category>
		<category><![CDATA[cafe racer]]></category>
		<category><![CDATA[cafe racer culture]]></category>
		<category><![CDATA[retro motorcycles]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=769</guid>
		<description><![CDATA[Found some great motorcycle websites lately. It feels like a bit of a change in the motorcycle community either that or I am just picking up on a whole alternative side to it. There seems to me to be a surge in the creative side of motorcycling, individual bikes created by their owners but modified [...]]]></description>
			<content:encoded><![CDATA[<p>Found some great motorcycle websites lately. It feels like a bit of a change in the motorcycle community either that or I am just picking up on a whole alternative side to it. There seems to me to be a surge in the creative side of motorcycling, individual bikes created by their owners but modified in an artistic nostalgic manner.</p>
<p>I think people are happy to go back to a more chilled out time, with great looking bikes that perform comfortably on the road but also give a real feeling of nostalgia. Something people can tinker with individualise but still use on a regular basis. Especially with so much time spent with technology it&#8217;s great to have that juxtaposition on a daily basis as you arrive at work on a bike made 40 years ago and work on the latest technology in the day.</p>
<div class="wp-caption alignnone" style="width: 460px"><a href="http://4.bp.blogspot.com/-RNMjfZ7IpFc/Tx5ZycfeH5I/AAAAAAAAKgw/9Rr7iqlx5sU/s800/guerrypratimages%25C3%25A9t%25C3%25A911-32.jpg"><img title="Indian engine" src="http://4.bp.blogspot.com/-RNMjfZ7IpFc/Tx5ZycfeH5I/AAAAAAAAKgw/9Rr7iqlx5sU/s800/guerrypratimages%25C3%25A9t%25C3%25A911-32.jpg" alt="Indian engine" width="450" /></a><p class="wp-caption-text">Indian engine</p></div>
<p><a href="http://bikeexif.com" target="_blank">http://bikeexif.com</a> Bike Exif &#8211; Great blog and interviews<br />
<a href="http://southsiders-mc.blogspot.com/" target="_blank">http://southsiders-mc.blogspot.com</a> &#8211; Very artistic photographic motorcycle blog<br />
<a href="http://www.dimecitycycles.com/" target="_blank">http://www.dimecitycycles.com/</a> Great bike builders, making some gorgeous cafe racers<br />
<a href="http://www.lossaengineering.com/" target="_blank">http://www.lossaengineering.com/</a> Again brilliant bike builder some great retro bikes and cafe bikes</p>
<div class="wp-caption alignnone" style="width: 460px"><a href="http://www.bikeexif.com/wp-content/uploads/2012/02/vintage-norton-motorcycle-2.jpg"><img title="Norton" src="http://www.bikeexif.com/wp-content/uploads/2012/02/vintage-norton-motorcycle-2.jpg" alt="Norton" width="450" /></a><p class="wp-caption-text">Norton</p></div>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/02/11/old-bikes-and-great-pictures/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/02/11/old-bikes-and-great-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virgin media</title>
		<link>http://iansramblings.com/2012/02/04/virgin-media/</link>
		<comments>http://iansramblings.com/2012/02/04/virgin-media/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 20:55:33 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[rambling]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[poor customer service]]></category>
		<category><![CDATA[poor service]]></category>
		<category><![CDATA[rubbish]]></category>
		<category><![CDATA[virgin media]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=765</guid>
		<description><![CDATA[Very annoyed with Virgin media and their very poor customer service. My modem seems to be sitting there flashing indicating no connection to their service. However it took over an hour, two separate 30+ minute calls (where they seem to auto disconnect after 35 mins on hold) to get through to a customer service centre [...]]]></description>
			<content:encoded><![CDATA[<p>Very annoyed with Virgin media and their very poor customer service. My modem seems to be sitting there flashing indicating no connection to their service. However it took over an hour, two separate 30+ minute calls (where they seem to auto disconnect after 35 mins on hold) to get through to a customer service centre in India.</p>
<p>Now I have to wait until next Saturday for someone to come and bring a replacement modem as apparently the flashing light is uncommon and means there is a fault with the modem.</p>
<p>So I can only write this offline and it will probably appear in a weeks time.</p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/02/04/virgin-media/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/02/04/virgin-media/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CB550 running much better</title>
		<link>http://iansramblings.com/2012/02/04/cb550-running-much-better/</link>
		<comments>http://iansramblings.com/2012/02/04/cb550-running-much-better/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 20:49:02 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[honda cb550]]></category>
		<category><![CDATA[running sluggish]]></category>
		<category><![CDATA[vacuum leak]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=762</guid>
		<description><![CDATA[I received my new carburetor to air box rubber kit arrived for my Honda. I had thought that the running problems I had would require a full clean out of the carbs and re-balancing possibly re-jetting so I hadn&#8217;t fitted them right away. Today I thought I would just go and get a new plug [...]]]></description>
			<content:encoded><![CDATA[<p>I received my new carburetor to air box rubber kit arrived for my Honda. I had thought that the running problems I had would require a full clean out of the carbs and re-balancing possibly re-jetting so I hadn&#8217;t fitted them right away.</p>
<p>Today I thought I would just go and get a new plug spanner and check the plugs but while I was in the garage I thought I would just try and replace the one carb to airbox tube that had some small splits in it and see what difference it made.</p>
<p>Immediately after installing the new tube, I thought something had gone horrendously wrong as the bike would no longer turn over or if it did it would splutter and back fire and die within 10 seconds or instantly if throttle was applied.</p>
<p>However after 10 to 15 starts with the kick starter and various combinations of choke, throttle, fuel on / off (to burn off flooding) it finally started roughly and I held the throttle on at 2k rpm closing the choke and it started to run like normal again.</p>
<p>Once it had been left to warm I went on a bit of a ride in the freezing weather and the performance difference was massive, easily nipped up to 70 mph at 6k. Very pleased with that result .</p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/02/04/cb550-running-much-better/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/02/04/cb550-running-much-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High load Twonky Media-Server</title>
		<link>http://iansramblings.com/2012/01/31/high-load-twonky-media-server/</link>
		<comments>http://iansramblings.com/2012/01/31/high-load-twonky-media-server/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 22:51:53 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[twonky]]></category>
		<category><![CDATA[wd mybook live]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=760</guid>
		<description><![CDATA[Had some strange issues with my Western Digital mybook live lately, load going up like crazy all down to Twonky media server, often it will sit at 95% cpu usage. Incase anyone else is having the same issue just thought I would run through how I got it sorted. Firstly you need to enable SSH [...]]]></description>
			<content:encoded><![CDATA[<p>Had some strange issues with my Western Digital mybook live lately, load going up like crazy all down to Twonky media server, often it will sit at 95% cpu usage.</p>
<p>Incase anyone else is having the same issue just thought I would run through how I got it sorted. Firstly you need to enable SSH access I think I mentioned it earlier on this blog, if you search it, or if not Google that part.</p>
<p>I then disabled Twonky, by running: -</p>
<pre>/etc/init.d/twonky stop</pre>
<p>Then moved the twonky startup script out of init.d and into root&#8217;s home, so it would no longer start on reboot.</p>
<p>Then I installed a more efficient but to be fair less attractive looking media server called mediatomb, using the following command: -</p>
<pre>apt-get update &amp;&amp; apt-get install mediatomb</pre>
<p>Once it&#8217;s installed you need to tweak it&#8217;s config particularly if you have a PS3 you want to stream to. In this section of the config I changed the ui to be on, enabled an account and changed the port (had to add the port).</p>
<pre> &lt;server&gt;
    &lt;ui enabled="yes" show-tooltips="yes"&gt;
      &lt;accounts enabled="yes" session-timeout="30"&gt;
        &lt;account user="userblah" password="passblah"/&gt;
      &lt;/accounts&gt;
    &lt;/ui&gt;
    &lt;port&gt;50000&lt;/port&gt;</pre>
<p>The next important thing to change is the following, add caching=&#8221;no&#8221; to the storage element: -</p>
<pre> &lt;storage caching="no"&gt;
      &lt;sqlite3 enabled="yes"&gt;
        &lt;database-file&gt;mediatomb.db&lt;/database-file&gt;
      &lt;/sqlite3&gt;
      &lt;mysql enabled="no"&gt;
        &lt;host&gt;localhost&lt;/host&gt;
        &lt;username&gt;mediatomb&lt;/username&gt;
        &lt;database&gt;mediatomb&lt;/database&gt;
      &lt;/mysql&gt;
    &lt;/storage&gt;</pre>
<p>I then searched through the file for all mention of PS3 and uncommented the lines that needed to be uncommented such as:</p>
<pre>&lt;protocolInfo extend="yes"/&gt;&lt;!-- For PS3 support change to "yes" --&gt;</pre>
<p>And</p>
<pre>&lt;!-- Uncomment the line below for PS3 divx support --&gt;
&lt;map from="avi" to="video/divx"/&gt;</pre>
<p>Once you have done all that then you need to restart mediatomb as it will have started after you installed it. Do that by running the following: -</p>
<pre>/etc/init.d/mediatomb restart</pre>
<p>Now you can encourage mediatomb to pick up your data and start indexing it all. Open a browser and point it at the IP of your WD mybook live box, and use a :50000 if that is the port you are running mediatomb on, you will get an interface like this, once logged in using the username and password from the config.xml earlier: -</p>
<div class="wp-caption alignnone" style="width: 592px"><img title="Mediatomb" src="http://www.digital-digest.com/software/images/MediaTomb_screenshot.jpg" alt="Mediatomb" width="582" height="480" /><p class="wp-caption-text">Mediatomb</p></div>
<p>The difference will be that you will have just one directory in the database part. So move to the file system and locate your media directory. On the right of the screen is a + icon with a arrow around it, click that to add the directory to be watched. If unsure set it to periodic checking, full initial scan and set the time to say 60 seconds.</p>
<p>In around 60 seconds it will kick in and start indexing all your files, once it&#8217;s complete you should be up and running and you should see all your content in that database view.</p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/01/31/high-load-twonky-media-server/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/01/31/high-load-twonky-media-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timeline made me leave Facebook</title>
		<link>http://iansramblings.com/2012/01/26/timeline-made-me-leave-facebook/</link>
		<comments>http://iansramblings.com/2012/01/26/timeline-made-me-leave-facebook/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 13:44:22 +0000</pubDate>
		<dc:creator>iyoung</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[leaving]]></category>
		<category><![CDATA[timeline]]></category>

		<guid isPermaLink="false">http://iansramblings.com/?p=741</guid>
		<description><![CDATA[Facebook has made moving to their new timeline view compulsary starting on the 2nd of Feb. I really dislike the linear flattening of my life into an accountable browseable format so I left the site this morning. It is a bit of a shame because Facebook has really become a a norm, certainly with regard [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook has made moving to their new timeline view compulsary starting on the 2nd of Feb. I really dislike the linear flattening of my life into an accountable browseable format so I left the site this morning. It is a bit of a shame because Facebook has really become a a norm, certainly with regard to organising events and keeping in touch with old friends.</p>
<p>Though once I left, I started to realise that any site that makes you feel any guilt for leaving and also takes up a lot of your time is more of an addiction and they want it that way. The data collected will eventually become a finger print or analysis of your life, extremely valuable and marketable information which will be no doubt be available to marketing companies for many many years to come.</p>
<p>I don&#8217;t think I want to allow that kind of analysis of my life, or to try and condense it into a tedious linear timeline that attempts to sum me up. I especially dislike how it makes it easier for future employers, friends, partners to sift back through your history and believe they understand you.</p>
<p><a href="http://templates.motocms.com/blog/web-and-trends/facebook-timeline/" target="_blank">Some of the negative sides to FB Timeline</a><br />
<a href="http://techland.time.com/2012/01/25/5-things-you-should-know-before-the-facebook-timeline-switch-happens/" target="_blank">5 things to watch out for with facebook timeline</a></p>
<div class="googlePlusOneButton"><div class="g-plusone" data-href="http://iansramblings.com/2012/01/26/timeline-made-me-leave-facebook/"  size="standard"   ></div></div><br />]]></content:encoded>
			<wfw:commentRss>http://iansramblings.com/2012/01/26/timeline-made-me-leave-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  iansramblings.com/feed/ ) in 2.36589 seconds, on May 20th, 2012 at 6:20 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 20th, 2012 at 7:20 am UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  iansramblings.com/feed/ ) in 0.04983 seconds, on May 20th, 2012 at 7:03 am UTC. -->
