<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>usefulthings.org.uk</title>
	
	<link>http://usefulthings.org.uk</link>
	<description />
	<lastBuildDate>Tue, 08 Dec 2009 21:53:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Usefulthingsorguk" /><feedburner:info uri="usefulthingsorguk" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Parted, GPT and LVM</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/8g7fPNh3oHo/parted-gpt-and-lvm</link>
		<comments>http://usefulthings.org.uk/index.php/archives/parted-gpt-and-lvm#comments</comments>
		<pubDate>Sat, 12 Sep 2009 20:25:15 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[disks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[parted]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=216</guid>
		<description><![CDATA[Always forget this:

(parted) mklabel gpt
(parted) mkpart primary 0 100%
(parted) set 1 lvm on

That is all.
]]></description>
			<content:encoded><![CDATA[<p>Always forget this:</p>
<p><code><br />
(parted) mklabel gpt<br />
(parted) mkpart primary 0 100%<br />
(parted) set 1 lvm on<br />
</code></p>
<p>That is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/parted-gpt-and-lvm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/parted-gpt-and-lvm</feedburner:origLink></item>
		<item>
		<title>CentOS 4.x and OMSA 6.1 – Update breaks IPMI</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/w7fKo46-GsA/centos-4-x-and-omsa-6-1-update-breaks-ipmi</link>
		<comments>http://usefulthings.org.uk/index.php/archives/centos-4-x-and-omsa-6-1-update-breaks-ipmi#comments</comments>
		<pubDate>Fri, 24 Jul 2009 14:18:34 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Dell]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redhat/Centos]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[omsa]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=213</guid>
		<description><![CDATA[Just recently I upgraded a Centos 4 machine which broke OMSA, this post helped me fix it.
]]></description>
			<content:encoded><![CDATA[<p>Just recently I upgraded a Centos 4 machine which broke OMSA, <a href="http://www.mail-archive.com/linux-poweredge@lists.us.dell.com/msg00047.html">this</a> post helped me fix it.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/centos-4-x-and-omsa-6-1-update-breaks-ipmi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/centos-4-x-and-omsa-6-1-update-breaks-ipmi</feedburner:origLink></item>
		<item>
		<title>Linux Setting processor affinity for a certain task or process</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/VEUPfAIKeNo/linux-setting-processor-affinity-for-a-certain-task-or-process</link>
		<comments>http://usefulthings.org.uk/index.php/archives/linux-setting-processor-affinity-for-a-certain-task-or-process#comments</comments>
		<pubDate>Wed, 17 Jun 2009 12:37:38 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[affinity]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=209</guid>
		<description><![CDATA[Just recently I wanted to be able to lock a single process to a specific CPU for testing purposes. A bit of googling lead me to thisnice explanation of how it works. 
Essentially you use the taskset command to run a new proc locked to a specific CPU:
% taskset -c 1 sleep 10
Will run &#8217;sleep [...]]]></description>
			<content:encoded><![CDATA[<p>Just recently I wanted to be able to lock a single process to a specific CPU for testing purposes. A bit of googling lead me to <a href="http://www.cyberciti.biz/tips/setting-processor-affinity-certain-task-or-process.html">this</a>nice explanation of how it works. </p>
<p>Essentially you use the taskset command to run a new proc locked to a specific CPU:</p>
<p><code>% taskset -c 1 sleep 10</code></p>
<p>Will run &#8217;sleep 10&#8242; locked to CPU #0.</p>
<p><code>% taskset -c -p 1<br />
pid 1's current affinity list: 0,1</code></p>
<p>Shows you what PID 1 has its affinity set to.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/linux-setting-processor-affinity-for-a-certain-task-or-process/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/linux-setting-processor-affinity-for-a-certain-task-or-process</feedburner:origLink></item>
		<item>
		<title>Connecting HUAWEI E220 to your Mac</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/Zu2OD8rIA1M/connecting-huawei-e220-to-your-mac</link>
		<comments>http://usefulthings.org.uk/index.php/archives/connecting-huawei-e220-to-your-mac#comments</comments>
		<pubDate>Thu, 21 May 2009 10:10:32 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[three]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=206</guid>
		<description><![CDATA[Every time I need to use this modem on a new mac I end up fighting with it and often giving up. I&#8217;ve made it work this time, so I intend to document the process here so I dont spend hours googling next time.
These instructions worked on my iMac and my MacBook Pro both of [...]]]></description>
			<content:encoded><![CDATA[<p>Every time I need to use this modem on a new mac I end up fighting with it and often giving up. I&#8217;ve made it work this time, so I intend to document the process here so I dont spend hours googling next time.</p>
<p>These instructions worked on my iMac and my MacBook Pro both of which were running 10.5.7.</p>
<p>Before you start, make sure the modem is not connected. </p>
<p>First off download the drivers, the ones buried in the three.co.uk support site lack a actual installer even though the documentation suggests you just need to run the installer. WTF am I supposed to do with a bunch of .kext files three? Have you heard of a nice user experience? Clearly not.  Click <a href="http://usefulthings.org.uk/wp-content/uploads/2009/05/huaweidatacarddriver26-intelpkg.zip">this link</a> and download the zip file from here, inside is a standard OSX installer package. run that.</p>
<p>After that has installed, you dont need to reboot. Plug in the modem and wait a few minutes. The little LED started flashing blue occasionally for me which I think means I&#8217;ve got 3G coverage.</p>
<p>Once its calmed down open up network preferences where you should see a few new devices down the left hand side:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/network-preferences.png" alt="network-preferences" title="network-preferences" width="691" height="556" class="aligncenter size-full wp-image-189" /></p>
<p>The device you are interested in is the HUAWEI Mobile, select that. Then in the &#8216;Telephone Number&#8217; field enter *99#:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/modem-options.png" alt="modem-options" title="modem-options" width="458" height="370" class="aligncenter size-full wp-image-188" /></p>
<p>After you have done that click the &#8216;Advanced&#8217; button. On the resulting pane, select &#8216;Generic&#8217; from the Vendor drop down. Then select &#8216;GPRS (GSM/3G)&#8217; from the Model field. If you are in the UK, enter &#8216;three.co.uk&#8217; into the APN field and leave the CID as 1:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/advanced-modem-options.png" alt="advanced-modem-options" title="advanced-modem-options" width="682" height="546" class="aligncenter size-full wp-image-186" /></p>
<p>Click ok, and then click Apply on the main Network Preferences pane. After you&#8217;ve done this try clicking connect and you should see the following connection confirmation:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/connected.png" alt="connected" title="connected" width="458" height="370" class="aligncenter size-full wp-image-187" /> </p>
<p>A nice little utility to monitor your connection is CheetahWatch which you can get from <a href="http://m.ac.nz/cheetahwatch/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/connecting-huawei-e220-to-your-mac/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/connecting-huawei-e220-to-your-mac</feedburner:origLink></item>
		<item>
		<title>Enabling vmware-tools clock sync from inside the guest</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/iyq2yXmT6oE/enabling-vmware-tools-clock-sync-from-inside-the-guest</link>
		<comments>http://usefulthings.org.uk/index.php/archives/enabling-vmware-tools-clock-sync-from-inside-the-guest#comments</comments>
		<pubDate>Tue, 28 Apr 2009 09:24:56 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=183</guid>
		<description><![CDATA[Just found out how to turn on vmware-tools clocking syncing from inside the guest, rather than editing the .vmx file on the host.
Once you have vmware-tools installed and configured try this:
/usr/sbin/vmware-guestd --cmd "vmx.set_option synctime 0 1"
To verify this has worked look for this line in the corresponding .vmx file:
tools.syncTime = "TRUE"
]]></description>
			<content:encoded><![CDATA[<p>Just found out how to turn on vmware-tools clocking syncing from inside the guest, rather than editing the .vmx file on the host.</p>
<p>Once you have vmware-tools installed and configured try this:</p>
<p><code>/usr/sbin/vmware-guestd --cmd "vmx.set_option synctime 0 1"</code></p>
<p>To verify this has worked look for this line in the corresponding .vmx file:</p>
<p><code>tools.syncTime = "TRUE"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/enabling-vmware-tools-clock-sync-from-inside-the-guest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/enabling-vmware-tools-clock-sync-from-inside-the-guest</feedburner:origLink></item>
		<item>
		<title>vmrun – Control VMware Fusion from the command line</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/520ILbK270I/vmrun-control-vmware-fusion-from-the-command-line</link>
		<comments>http://usefulthings.org.uk/index.php/archives/vmrun-control-vmware-fusion-from-the-command-line#comments</comments>
		<pubDate>Tue, 31 Mar 2009 15:04:36 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=177</guid>
		<description><![CDATA[I&#8217;ve just needed to snapshot a virtual machine running under VMware Fusion on my Mac but I only had SSH access. I&#8217;ve discovered the vmrun utility which is hidden away in XXX. VMware have a PDF of how to use it here. Very handy!
% export PATH=/Library/Application\ Support/VMware\ Fusion/:$PATH
% vmrun listSnapshots SpaceWalk.vmx
Total snapshots: 1
Fresh 5.2 all [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just needed to snapshot a virtual machine running under <a href="http://www.vmware.com/products/fusion/">VMware Fusion</a> on my Mac but I only had SSH access. I&#8217;ve discovered the vmrun utility which is hidden away in XXX. VMware have a PDF of how to use it <a href="http://www.vmware.com/pdf/vix162_vmrun_command.pdf">here</a>. Very handy!</p>
<p><code>% <strong>export PATH=/Library/Application\ Support/VMware\ Fusion/:$PATH<br />
% vmrun listSnapshots SpaceWalk.vmx</strong><br />
Total snapshots: 1<br />
Fresh 5.2 all updates<br />
% <strong>vmrun -T fusion  snapshot SpaceWalk.vmx "SpaceWalk Installed"</strong><br />
% <strong>vmrun listSnapshots SpaceWalk.vmx</strong><br />
Total snapshots: 2<br />
Fresh 5.2 all updates<br />
SpaceWalk Installed<br />
%</code></p>
<p>Bravo!</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/vmrun-control-vmware-fusion-from-the-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/vmrun-control-vmware-fusion-from-the-command-line</feedburner:origLink></item>
		<item>
		<title>Scripting DynDNS</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/A0LfbC-UBHU/scripting-dyndns</link>
		<comments>http://usefulthings.org.uk/index.php/archives/scripting-dyndns#comments</comments>
		<pubDate>Wed, 10 Dec 2008 22:50:55 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[dyndns]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=173</guid>
		<description><![CDATA[I recently needed to bulk load some entries to the DynDNS custom DNS service, I ended up using wget and a couple of bash for loops. This was the crux of it:
To login:

wget --keep-session-cookies \
--save-cookies cookies.txt \
--post-data="__login=1&#38;username=${USERNAME}&#38;password=${PASSWORD}" \

https://www.dyndns.com/account/

To check you are logged in:

wget --keep-session-cookies \
--load-cookies cookies.txt \

https://www.dyndns.com/account/services/zones/dns/

grep the page for &#8216;Logged&#8217; you should see it [...]]]></description>
			<content:encoded><![CDATA[<p>I recently needed to bulk load some entries to the DynDNS custom DNS service, I ended up using wget and a couple of bash for loops. This was the crux of it:</p>
<p>To login:</p>
<pre>
wget --keep-session-cookies \
--save-cookies cookies.txt \
--post-data="__login=1&amp;username=${USERNAME}&amp;password=${PASSWORD}" \

https://www.dyndns.com/account/
</pre>
<p>To check you are logged in:</p>
<pre>
wget --keep-session-cookies \
--load-cookies cookies.txt \

https://www.dyndns.com/account/services/zones/dns/
</pre>
<p>grep the page for &#8216;Logged&#8217; you should see it say something like &#8216;Logged in user: blah&#8217;.</p>
<p>Also look towards the bottom of the page for the &#8216;multiform&#8217; hidden form element, you need the value which is a string, something like &#8216;jaoEEPpxzAhfadQZ/dpO/A341374&#8242;</p>
<p>To add an entry:</p>
<pre>
NAME=test
IP=1.2.3.4
MULTIFORM="jaoEEPpxzAhfadQZ/dpO/A341374"
wget --keep-session-cookies \
--load-cookies cookies.txt \
--post-data="name_new=${NAME}&amp;ttl_new=600&amp;type_new=A&amp;data_new=${IP}&amp;submit=submit&amp;multiform=${MULTIFORM}" \

https://www.dyndns.com/account/services/zones/dns/
</pre>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/scripting-dyndns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/scripting-dyndns</feedburner:origLink></item>
		<item>
		<title>Solaris Ping</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/6akRbjP3z6M/solaris-ping</link>
		<comments>http://usefulthings.org.uk/index.php/archives/solaris-ping#comments</comments>
		<pubDate>Fri, 14 Nov 2008 11:59:00 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://usefulthings2.wordpress.com/2008/11/14/solaris-ping/</guid>
		<description><![CDATA[I never remember how to make Solaris ping show the time of each ping, like GNU Ping does, without any arguments the output is like:
% ping foo
foo is alive
%
If you want to see the time of each ping, use -s which makes it more like the GNU Ping you find on linux:
% ping -s foo
PING [...]]]></description>
			<content:encoded><![CDATA[<p>I never remember how to make Solaris ping show the time of each ping, like GNU Ping does, without any arguments the output is like:
<pre>% ping foo
foo is alive
%</pre>
<p>If you want to see the time of each ping, use -s which makes it more like the GNU Ping you find on linux:</p>
<pre>% ping -s foo
PING foo: 56 data bytes
64 bytes from foo.somedomain.com (10.44.101.16): icmp_seq=0. time=0. ms
64 bytes from foo.somedomain.com (10.44.101.16): icmp_seq=1. time=0. ms
^C
----foo PING Statistics----
2 packets transmitted, 2 packets received, 0% packet loss
round-trip (ms)  min/avg/max = 0/0/0
%</pre>
<p>That is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/solaris-ping/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/solaris-ping</feedburner:origLink></item>
		<item>
		<title>djbdns, daemontools and ucspi-tcp RPMS</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/Wb4KKfnpxBw/djbdns-daemontools-and-ucspi-tcp-rpms</link>
		<comments>http://usefulthings.org.uk/index.php/archives/djbdns-daemontools-and-ucspi-tcp-rpms#comments</comments>
		<pubDate>Mon, 18 Aug 2008 18:09:16 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[RPM]]></category>
		<category><![CDATA[Redhat/Centos]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[rpms]]></category>

		<guid isPermaLink="false">http://usefulthings2.wordpress.com/?p=158</guid>
		<description><![CDATA[Every so often I need a copy of one or all of these on a new machine. I tend to normally use RPM based distros and always have issues trying to find RPMS of these packages. As a result I&#8217;ve packaged them up and put them in my svn repo.
Feel free to checkout that directory, [...]]]></description>
			<content:encoded><![CDATA[<p>Every so often I need a copy of one or all of these on a new machine. I tend to normally use RPM based distros and always have issues trying to find RPMS of these packages. As a result I&#8217;ve packaged them up and put them in my <a title="svn RPMS" href="http://svn.riviera.org.uk/repo/RPMS/">svn repo</a>.</p>
<p>Feel free to checkout that directory, it includes a readme of how to build them for a system I&#8217;ve yet to need them on. replace the fc7 or el5 with something appropriate for your distribution.</p>
<p>Direct download links:</p>
<p><strong>Redhat/Centos 5:</strong></p>
<ul>
<li><a href="http://svn.riviera.org.uk/repo/RPMS/daemontools/RPMS/i386/daemontools-0.76-1.el5.i386.rpm">daemontools version 0.76</a></li>
<li><a href="http://svn.riviera.org.uk/repo/RPMS/djbdns/RPMS/i386/djbdns-1.05-1.el5.i386.rpm">djbdns version 1.05</a></li>
<li><a href="http://svn.riviera.org.uk/repo/RPMS/ucspi-tcp/RPMS/i386/ucspi-tcp-0.88-1.el5.i386.rpm">ucspi-tcp version 0.88</a></li>
</ul>
<p><strong>Fedora 7:</strong></p>
<ul>
<li><a href="http://svn.riviera.org.uk/repo/RPMS/daemontools/RPMS/i386/daemontools-0.76-1.fc7.i386.rpm">daemontools version 0.76</a></li>
<li><a href="http://svn.riviera.org.uk/repo/RPMS/djbdns/RPMS/i386/djbdns-1.05-1.fc7.i386.rpm">djbdns version 1.05</a></li>
<li><a href="http://svn.riviera.org.uk/repo/RPMS/ucspi-tcp/RPMS/i386/ucspi-tcp-0.88-1.fc7.i386.rpm">ucspi-tcp version 0.88</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/djbdns-daemontools-and-ucspi-tcp-rpms/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/djbdns-daemontools-and-ucspi-tcp-rpms</feedburner:origLink></item>
		<item>
		<title>djbdns dnscache log converter</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/VaJwfxJqAIw/djbdns-dnscache-log-converter</link>
		<comments>http://usefulthings.org.uk/index.php/archives/djbdns-dnscache-log-converter#comments</comments>
		<pubDate>Mon, 18 Aug 2008 10:00:08 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[djbdns]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[dnscache]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://usefulthings2.wordpress.com/?p=153</guid>
		<description><![CDATA[I&#8217;ve just had to struggle with the hex ip addresses which dnscache logs, after a bit of searching I found some nice notes about the log format here thanks to Rob Mayoff.
 Finally I found this handy perl script.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just had to struggle with the hex ip addresses which dnscache logs, after a bit of searching I found some nice notes about the log format <a href="http://www.dqd.com/~mayoff/notes/djbdns/dnscache-log.html">here</a> thanks to Rob Mayoff.</p>
<p> Finally I found <a href="http://www.artfiles.org/qmail.org/dnscache-log.pl">this</a> handy perl script.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/djbdns-dnscache-log-converter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/djbdns-dnscache-log-converter</feedburner:origLink></item>
	</channel>
</rss>
