<?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>adamblog &#187; openrights</title>
	<atom:link href="http://blog.amyl.org.uk/category/openrights/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amyl.org.uk</link>
	<description>my half-arsed attempt at blogging</description>
	<lastBuildDate>Tue, 06 Dec 2011 19:09: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>
			<item>
		<title>arpinfo</title>
		<link>http://blog.amyl.org.uk/2010/05/arpinfo/</link>
		<comments>http://blog.amyl.org.uk/2010/05/arpinfo/#comments</comments>
		<pubDate>Thu, 20 May 2010 16:17:24 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[openrights]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[arp]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[IEEE]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[OEM]]></category>
		<category><![CDATA[OUI]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.amyl.org.uk/?p=81</guid>
		<description><![CDATA[Ever wanted to know who the OEM/Supplier/Manufacturer of network devices attached to a machine were?
I did. And couldn&#8217;t see anyone else&#8217;s script to steal, so here&#8217;s a really ugly way to do it  

# arpinfo:
#   pull hardware info from the arp() table
#
# Copyright (c) 2010 Adam McGreggor. Some rights reserved.
# Email: ]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to know who the OEM/Supplier/Manufacturer of network devices attached to a machine were?</p>
<p>I did. And couldn&#8217;t see anyone else&#8217;s script to steal, so here&#8217;s a really ugly way to do it <img src='http://blog.amyl.org.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><code><br />
# arpinfo:<br />
#   pull hardware info from the arp() table<br />
#<br />
# Copyright (c) 2010 Adam McGreggor. Some rights reserved.<br />
# Email: <adam@amyl.org.uk> Web: <http://blog.amyl.org.uk><br />
#<br />
# $Id:$<br />
#</p>
<p>WEBSOURCE=http://standards.ieee.org/regauth/oui/oui.txt<br />
DOC=/usr/local/doc/oui.txt</p>
<p>curl --silent ${WEBSOURCE} -o "${DOC}"</p>
<p>arp | awk '{print $3}' | awk -F: '{print $1"-"$2"-"$3}' | while read ARP<br />
do<br />
    grep $ARP ${DOC}<br />
done<br />
arp<br />
</code></p>
<p>Works for me&#8230; although it could do with a tidy-up. As a quick and dirty thing, mind&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amyl.org.uk/2010/05/arpinfo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t upload images to a Wordpress blog?</title>
		<link>http://blog.amyl.org.uk/2008/10/cant-upload-images-to-a-wordpress-blog/</link>
		<comments>http://blog.amyl.org.uk/2008/10/cant-upload-images-to-a-wordpress-blog/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 16:24:10 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[openrights]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[detective work]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[internet weenies]]></category>
		<category><![CDATA[ORG]]></category>
		<category><![CDATA[uploads]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tanqueray.amyl.org.uk/~adam/blog/?p=25</guid>
		<description><![CDATA[If, like the guys in the ORG HQ, you find yourself unable to upload images in a Wordpress Blog, and are befuddled by the reams of posts &#38;c on the web, well, here&#8217;s another idea that might sort you out:
Remove the crap from old installs, in your ~/.mozilla directory. And by crap, well, I mean:

appreg
mozver.dat
pluginreg.dat
plugins/

cd]]></description>
			<content:encoded><![CDATA[<p>If, like the guys in the <a href="http://www.openrightsgroup.org"><acronym title="Open Rights Group">ORG</acronym></a> HQ, you find yourself unable to upload images in a Wordpress Blog, and are befuddled by the reams of posts &amp;c on the web, well, here&#8217;s another idea that might sort you out:</p>
<p>Remove the crap from old installs, in your ~/.mozilla directory. And by crap, well, I mean:</p>
<ul>
<li>appreg</li>
<li>mozver.dat</li>
<li>pluginreg.dat</li>
<li>plugins/</li>
</ul>
<p><code>cd .mozilla<br />
rm -rf plugins/<br />
rm appreg<br />
rm mozver.dat</p>
<p>cd firefox/<br />
rm -rf pluginreg.dat</code></p>
<p>Astonishingly, by removing a couple of bits of pelt, the uploads worked for the guys.</p>
<p>Seeing as this is my blog, and people expect me to be miserable, here&#8217;s my whine: why the fuck don&#8217;t people SEARCH THE FUCKING ARCHIVES on forums before posting a new question? I gave up, and went back to old-fashioned testing.</p>
<p>Oh, and I should probably plug a fairly new site I recently discovered: <a href="http://stackoverflow.com/">stackoverflow</a> &#8212; about all I can whine about with that is that is uses OpenID&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amyl.org.uk/2008/10/cant-upload-images-to-a-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>4oD, VMWare, Grrrrrrrrrr.</title>
		<link>http://blog.amyl.org.uk/2008/03/4od-vmware-grrrrrrrrrr/</link>
		<comments>http://blog.amyl.org.uk/2008/03/4od-vmware-grrrrrrrrrr/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 16:36:44 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[4od]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[openrights]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[why can't things be *easy*]]></category>

		<guid isPermaLink="false">http://tanq.amyl.org.uk/~adam/blog/?p=3</guid>
		<description><![CDATA[Ok, let&#8217;s start off with saying I&#8217;ve not used &#8220;Windows&#8221; properly for about 4years, now, having ditched it in favor of umbungo, on my home machines.
The exception to this is that I use VMWare for when I need to use Windows, e.g., to do stuff in Visio, or sort out something like Page Breaks &#38;]]></description>
			<content:encoded><![CDATA[<p>Ok, let&#8217;s start off with saying I&#8217;ve not used &#8220;Windows&#8221; properly for about 4years, now, having ditched it in favor of <a href="http://www.ubuntu.com">umbungo</a>, on my home machines.</p>
<p>The exception to this is that I use VMWare for when I need to use Windows, e.g., to do stuff in Visio, or sort out something like Page Breaks &amp; Tables for a Word Document: two features *really* lacking in OpenOffice&#8230;</p>
<p>But now, I want to watch a news report off ITN. I should have just found a Torrent. It would have been a lot quicker. And saved the web of *another* rant-blog posting&#8230;</p>
<p>You&#8217;d have thought it would be fairly easy. Oh no. <a href="http://www.channel4.com/4od">4oD</a> don&#8217;t work on *nix:</p>
<blockquote><p><a href="http://tanqueray.amyl.org.uk/~adam/blog/?attachment_id=5" rel="attachment wp-att-5" title="4od Screengrab"><img src="http://tanq.amyl.org.uk/%7Eadam/blog/wp-content/uploads/2008/03/4od-sorry.thumbnail.png" alt="4od Screengrab" /></a> Who can use 4oD?</p>
<p>4oD is available online on your PC and through our digital television partners, BT Vision, Tiscali TV or Virgin Media. You&#8217;ll need to be a resident in the UK or the Republic of Ireland to watch 4oD.</p>
<p>On your PC<br />
To be able to get 4oD on your PC, you will need:</p>
<p>* A PC with Windows XP or Windows Vista<br />
* Internet Explorer 5.5 or above<br />
* A broadband internet connection</p>
<p>Read about our minimum system requirements to find out more</p>
<p>Please note that Mac, Linux and non-XP users will currently not be able to use this service.<br />
<a href="http://www.channel4.com/4od/help.html">http://www.channel4.com/4od/help.html</a></p></blockquote>
<p>So, over to the VM&#8230;</p>
<p>&#8216;cept that didn&#8217;t have: A recent enough Media Player, DotNet, a bazillion patches (post SP2) &#8230;</p>
<p>And installing all of those updates means that my 6GB partition weren&#8217;t big enough to actually carry on (bearing in mind this is just XP, Office 2003, a printer driver, Acrobat Reader&#8230;). Great. Should be easy enough to sort that out, he thinks.</p>
<p>Nope.</p>
<p><strong>Step One:</strong> try to work out<a href="http://www.cutawaysecurity.com/blog/archives/88">how to delete</a> the snapshot made accidentally&#8230;</p>
<p><strong>Step Two:</strong> oh, that crashes VMWare. So let&#8217;s <a href="https://help.ubuntu.com/community/VMware/Server">rebuild</a> VMWare&#8230;</p>
<p><strong>Step Three:</strong> oh, it seems as though <em>that</em> might&#8217;ve worked&#8230;</p>
<p><strong>Step Four:</strong> let&#8217;s try and <a href="http://www.novell.com/coolsolutions/tip/15344.html">resize the partition</a>: yum. And <strong>yay</strong></p>
<p><strong>Step Five:</strong> see if Windows wants to play ball.<br />
Fuck. Nope, it now recognizes there&#8217;s two disks, not the one partition&#8230; so, erm, <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1647">over to the live CD and thence GPartEd</a>&#8230;</p>
<p><em>(at this point, I thought, &#8220;fuck it&#8221;, I&#8217;m gonna blog)</em></p>
<p><strong>Step Six:</strong> ignore the gparted warnings, and see if that&#8217;s sorted it&#8230;</p>
<p><strong>Step Seven:</strong> let&#8217;s reboot into Windows. Oh look, it wants <strong>another</strong> reboot. Fuckwittery.</p>
<p><strong>Step Seven(b):</strong> well, guess what, it&#8217;s not worked. But I have had a brainfart. Despite saying &#8220;I don&#8217;t want a paging file, but you&#8217;re gonna give me one, anyhow&#8221;, let&#8217;s resize that to get some space on this VM Disk&#8230;.</p>
<p>So, erm, yeah. Maybe I&#8217;ll fix this a bit proper, but right now, i&#8217;ve had enough&#8230; I though *nix was meant to be the more difficult to use OS&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amyl.org.uk/2008/03/4od-vmware-grrrrrrrrrr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

