<?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>Dark Blue Computer Services</title>
	<atom:link href="http://darkblue.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://darkblue.co.uk</link>
	<description></description>
	<lastBuildDate>Tue, 20 Dec 2011 12:01:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Windows server backup OpenVZ and TimeDicer</title>
		<link>http://darkblue.co.uk/2011/09/windows-server-backup-openvz-and-timedicer/</link>
		<comments>http://darkblue.co.uk/2011/09/windows-server-backup-openvz-and-timedicer/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 09:11:16 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=295</guid>
		<description><![CDATA[Setting up Ubuntu 10.04 Virtual Machine with OpenVZ Installing and Setting Up OpenVZ Backups are an important part of any IT Technician’s life, the good ones anyway, and so I began setting up a backup system for our clients and &#8230; <a href="http://darkblue.co.uk/2011/09/windows-server-backup-openvz-and-timedicer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
<p><strong><span style="text-decoration: underline;">Setting up Ubuntu 10.04 Virtual Machine with OpenVZ</span></strong></p>
<p><strong><span style="text-decoration: underline;">Installing and Setting Up OpenVZ</span></strong></p>
<p>Backups are an important part of any IT Technician’s life, the good ones anyway, and so I began setting up a backup system for our clients and our own machines. The system chosen to do the backups was one called <a href="http://www.timedicer.co.uk/index">TimeDicer</a>. This system works with all versions of Windows OS from XP to 7, and is very well thought out.</p>
<p>The TimeDicer website stated that the supported configuration of the system was an Ubuntu 10.04 setup, and so I decided it would be best to create a virtual machine using Ubuntu 10.04; (this in itself brought its own array of problems&#8230;but more on that later).</p>
<p>Our main hardware servers are CentOS based machines, and so I needed to create a virtual machine on of our servers. To do this I installed <a href="http://wiki.openvz.org/Main_Page">OpenVZ</a> with the following steps, from the OpenVZ quick installation wiki page found <a href="http://wiki.openvz.org/Quick_installation">here</a>.</p>
<p>The repository for OpenVZ needed to be installed first. This was done by following these steps.</p>
<div>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>yum.repos.d
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>download.openvz.org<span style="color: #000000; font-weight: bold;">/</span>openvz.repo
&nbsp;
rpm --import  http:<span style="color: #000000; font-weight: bold;">//</span>download.openvz.org<span style="color: #000000; font-weight: bold;">/</span>RPM-GPG-Key-OpenVZ</pre></div></div>

</div>
<p>The next step was to install the kernel that OpenVZ would use. As I was going to run OpenVZ on a 64bit CentOS host machine I needed to use this command.</p>
<div>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> ovzkernel-ovzkernal.x86_64</pre></div></div>

</div>
<p>Now OpenVZ was almost ready to roll. However there was still the issue of networking when I rebooted into the OpenVZ setup. This was solved by editing the /etc/sysctl.conf file with the following</p>
<div>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#On Hardware Node we generally need</span>
<span style="color: #666666; font-style: italic;">#packet forwarding enabled and proxy arp disabled</span>
net.ipv4.ip_forward = <span style="color: #000000;">1</span>
net.ipv6.conf.default.forwarding = <span style="color: #000000;">1</span>
net.ipv6.conf.all.forwarding = <span style="color: #000000;">1</span>
net.ipv4.conf.default.proxy_arp = <span style="color: #000000;">0</span>
Enables <span style="color: #7a0874; font-weight: bold;">source</span> route verification
net.ipv4.conf.all.rp_filter = <span style="color: #000000;">1</span>
Enables the magic-sysrq key
kernel.sysrq = <span style="color: #000000;">1</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># We do not want all our interfaces to send redirects</span>
net.ipv4.conf.default.send_redirects = <span style="color: #000000;">1</span>
net.ipv4.conf.all.send_redirects = <span style="color: #000000;">0</span></pre></div></div>

</div>
<p>An important note to remember, for all you avid coders out there, is to comment out any conflicting terms or replace them entirely.</p>
<ol>
<li>Also make sure that SELinux is disabled in /etc/sysconfig/selinux</li>
<li>At this stage OpenVZ will have placed itself correctly into the bootloader of the machine so when I rebooted, it instantly loaded the kernel and OpenVZ was up and running.</li>
<li>The last step to get an Ubuntu 10.04 virtual machine running is to download the template that OpenVZ will use. I downloaded the Ubuntu-10.04-x86_64.tar.gz file from <a href="http://wiki.openvz.org/Download/template/precreated">here</a> into /vz/template/cache. There is no need to unpack this file as OpenVZ kindly deals with that itself.</li>
</ol>
<p>So all that should be left to do is run the command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> vzctl create <span style="color: #000000;">101</span> <span style="color: #660033;">--ostemplate</span> Ubuntu-<span style="color: #000000;">10.04</span>-x86_64</pre></div></div>

<p>This should then set the ball rolling and OpenVZ will attempt to load the virtual machine. It is important to only use identity numbers of 101 upwards as OpenVZ uses 1 – 100 itself and this could cause conflicts later on. Finally I needed to give the virtual machine a name and set its IP address. The details to do which can be found <a href="http://wiki.openvz.org/Basic_operations_in_OpenVZ_environment">here</a>. After this has all been set, (note: remember to put &#8211;save at the end of each line), I then started up the virtual machine</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">vzctl start <span style="color: #000000;">101</span></pre></div></div>

<p>I entered the system to check everything had been set up correctly, it&#8217;s important to check ssh connections here just in case they didn’t get transferred over; which luckily mine did. With the following command&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">vzctl enter <span style="color: #000000;">101</span></pre></div></div>

<p>&#8230;everything was now set up for the timedicer server to be installed.</p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline;">Install TimeDicer</span></strong></p>
<p>I followed step three on the TimeDicer instructions, found <a href="http://www.timedicer.co.uk/index">here</a>, which was&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>timedicer.co.uk<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span>timedicer-server-setup
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">744</span> timedicer-server-setup</pre></div></div>

<p>When I first installed the TimeDicer software there was an issue with it finding the machine&#8217;s IP address of an OpenVZ system, and so I had to hard code the IP address of my machine into the timedicer-server-setup script. However I only mention this for anyone who has the same issue; TimeDicer has recently been updated to accommodate a more general IP address setup, and so it can now find the IP address. I have even tested this and it works perfectly!</p>
<p>The last command to run is:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>timedicer-server-setup –f my<span style="color: #000000; font-weight: bold;">@</span>emailaddress.com</pre></div></div>

<p>This should set everything going, and by following steps 4 and 5 I was able to test that the webserver had worked correctly; I then secured my web interface.</p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p><strong><span style="text-decoration: underline;">Setting Up Client Machines</span></strong></p>
<p>The steps on TimeDicer’s website about ‘Making a Backup: Using TimeDicer Client’ worked perfectly for myself however I then ran into an issue with the VSS side of things, and the fact the client machines would have more than one hard drive installed.</p>
<p><span style="color: #000080;">EDIT: TimeDicer no longer deletes old shadow copies so this section should be unnecessary. I have left it here for reference if anyone has similar problems. However I would suggest contacting the creator of TimeDicer directly.</span></p>
<p>TimeDicer by default deletes all old shadow copies on the machine when it begins a backup. This for me was not appropriate as shadow copies are used to replace files that get corrupted with an earlier version, or if someone accidentally deletes a file they needed; this happens far more than you might realise.</p>
<p>After speaking with the creator of TimeDicer I was able to disable the VSS deleting. This can be done by opening the file C:\Progam Files\TimeDicer\TimeDicer.cmd with something like <a href="http://notepad-plus-plus.org/">notepad++</a>.</p>
<p>Then changing line 455 from:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">ECHO y<span style="color: #000000; font-weight: bold;">|</span><span style="color: #ff0000;">&quot;%runfrom%<span style="color: #000099; font-weight: bold;">\v</span>shadow-%VSHADOWVER%-%WINBIT%.exe&quot;</span> -da<span style="color: #000000; font-weight: bold;">&amp;</span>gt;nul</pre></div></div>

<p>To:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">REM ECHO y<span style="color: #000000; font-weight: bold;">|</span><span style="color: #ff0000;">&quot;%runfrom%<span style="color: #000099; font-weight: bold;">\v</span>shadow-%VSHADOWVER%-%WINBIT%.exe&quot;</span> -da<span style="color: #000000; font-weight: bold;">&amp;</span>gt;nul</pre></div></div>

<p>This comments out the line and stops TimeDicer from deleting previous shadow copies.</p>
<p>The next hurdle came when I needed to back up more than one drive at a time. For instance TimeDicer straight out of the box can back up the documents and settings of the user running the program from the C: drive. However in my case I wanted to back up some data from the C:, D: and F: drive of my client machine. After yet more discussion with TimeDicer’s creator I was then able to get it working. The solution was that it needed a TimeDicer.txt file for each drive, which is the config file that TimeDicer uses to run.</p>
<p>So I first went about creating TimeDicer-D.txt and TimeDicer-F.txt with a similar configuration as the original TimeDicer.txt file; just with the list of backup for each drive at the bottom (such as D:\, d-drive).  TimeDicer is quite flexible and can be edited in many ways, shown <a href="http://www.timedicer.co.uk/timedicer-man.html">here</a>, the way I chose was to have each TimeDicer.txt file outputting to its own log with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">SET <span style="color: #007800;">log</span>=C:\Documents and Settings\User\Application Data\TimeDicer\filename</pre></div></div>

<p>This can also be done with the excludes file if you wish to.</p>
<p>Finally to run the setup as one scheduled task instead of three I created a batch file TimeDicerStart.bat with the following commands.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">CALL “C:\Program Files\TimeDicer\TimeDicer.cmd” <span style="color: #000000; font-weight: bold;">/</span>x
&nbsp;
CALL “C:\Program Files\TimeDicer\TimeDicer.cmd” <span style="color: #000000; font-weight: bold;">/</span>f C:\Documents and Settings\User\Application Data\TimeDicer\TimeDicer-D.txt <span style="color: #000000; font-weight: bold;">/</span>x
&nbsp;
CALL “C:\Program Files\TimeDicer\TimeDicer.cmd” <span style="color: #000000; font-weight: bold;">/</span>f C:\Documents and Settings\User\Application Data\TimeDicer\TimeDicer-F.txt <span style="color: #000000; font-weight: bold;">/</span>x</pre></div></div>

<p>The /x tells TimeDicer not to pause and ask for “Press any key to continue” which allows scheduled tasks to run it and close it. And the /f tells TimeDicer what config file to use.</p>
<p>I also found an issue with the private key on Windows Server 2003, which isn&#8217;t really supported by TimeDicer, but it does work. The scheduled task would come back with an 0&#215;8 error. Now no matter what google might tell you this isn&#8217;t a Windows issue about logging into a user via a terminal connection. This is simply just the error code of TimeDicer, a list of which can be found on the <a href="http://www.timedicer.co.uk/timedicer-man.html">man</a> page, saying it cannot find the private key. To solve this issue you just need to add this line:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">SET <span style="color: #007800;">key</span>=C:\Documents and Settings\User\Application Data\TimeDicer\privatekey.ppk</pre></div></div>

<p>Or similar depending on your set up.</p>
<p>After this I just ran the TimeDicerStart.bat file that I created earlier from command prompt and everything work perfectly. The scheduled task began to back up every day at the correct time with no errors.</p>
<p><span style="color: #000000;"><span class="Apple-style-span" style="font-size: 29px; line-height: 43px;"><br />
</span></span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2011/09/windows-server-backup-openvz-and-timedicer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Recognise Laptop Memory</title>
		<link>http://darkblue.co.uk/2010/09/how-to-recognise-laptop-memory/</link>
		<comments>http://darkblue.co.uk/2010/09/how-to-recognise-laptop-memory/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 19:03:51 +0000</pubDate>
		<dc:creator>Deb</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[DDR]]></category>
		<category><![CDATA[laptop upgrade]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[RAM]]></category>
		<category><![CDATA[SO-DIMM]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=199</guid>
		<description><![CDATA[It&#8217;s well known that the cheapest and easiest way to give your old laptop a new lease of life is to bung some extra RAM in it. In most laptops it&#8217;s as easy as turning it upside down, unscrewing a &#8230; <a href="http://darkblue.co.uk/2010/09/how-to-recognise-laptop-memory/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s well known that the cheapest and easiest way to give your old laptop a new lease of life is to bung some extra RAM in it. In most laptops it&#8217;s as easy as turning it upside down, unscrewing a cover and pushing it into the right slot.</p>
<p><a href="http://darkblue.co.uk/wp-content/uploads/2010/09/fit-laptop-memory1.jpg"><img class="aligncenter size-large wp-image-211" title="Fitting Laptop Memory" src="http://darkblue.co.uk/wp-content/uploads/2010/09/fit-laptop-memory1-1024x255.jpg" alt="Fitting Laptop Memory" width="500" /></a>Recognising what memory you need to buy can be a little more tricky.<span id="more-199"></span></p>
<p>Websites like crucial.co.uk know this and have a really good system where you can choose your exact laptop and they will show you what memory you need, but if you want to save a bit of money and buy used memory it&#8217;s a good idea to know what you&#8217;re talking about.</p>
<p>Any laptop outside a museum or science lab that you have lying around today will have one of 4 types of memory, all called SO-DIMM. It&#8217;s smaller than the memory that goes into most PCs, about 67mm wide, to save space.</p>
<div id="attachment_200" class="wp-caption aligncenter" style="width: 410px"><a href="http://darkblue.co.uk/wp-content/uploads/2010/08/memory144.jpg"><img class="size-full wp-image-200" title="144pin SO-DIMM" src="http://darkblue.co.uk/wp-content/uploads/2010/08/memory144.jpg" alt="144pin SO-DIMM" width="400" height="201" /></a><p class="wp-caption-text">144pin SO-DIMM</p></div>
<p>Oldish laptops will use 144pin SO-DIMMs, this is usually labelled PC100 or PC133 which refers to how fast the memory can transfer data. There are 72 pins (gold contact strips along the edge) on either side grouped into 30 and 42pins. There is a gap between the groups that a corresponding ridge in the memory slot lines up with to stop you fitting the wrong type of memory in your laptop. The centre of the gap is approximately 29mm along.</p>
<p>128mb, 256mb and 512mb sticks of this type of memory are still readily available both new and used, 1GB sticks are very rare and expensive and, to be honest, overkill for this age of laptop.</p>
<p>Newer memory is refered to as DDR. DDR1 (mostly labelled just DDR) and the even newer DDR2 have 200pins, 100 on each side grouped into 20 and 80 pins and look very similar.</p>
<div id="attachment_201" class="wp-caption aligncenter" style="width: 410px"><a href="http://darkblue.co.uk/wp-content/uploads/2010/08/memoryddr.jpg"><img class="size-full wp-image-201" title="200pin DDR1 SO-DIMM" src="http://darkblue.co.uk/wp-content/uploads/2010/08/memoryddr.jpg" alt="200pin DDR1 SO-DIMM" width="400" height="203" /></a><p class="wp-caption-text">200pin DDR1 SO-DIMM</p></div>
<p>DDR1 has the centre of the gap at about 15mm along and is usually found labelled PC2100 (267mhz), PC2700 (333mhz) or PC3200 (400mhz). There is plenty of this type of memory about both new and used and it is relatively inexpensive.</p>
<div id="attachment_202" class="wp-caption aligncenter" style="width: 410px"><a href="http://darkblue.co.uk/wp-content/uploads/2010/08/memoryddr2.jpg"><img class="size-full wp-image-202" title="200pin DDR2 SO-DIMM" src="http://darkblue.co.uk/wp-content/uploads/2010/08/memoryddr2.jpg" alt="200pin DDR2 SO-DIMM" width="400" height="182" /></a><p class="wp-caption-text">200pin DDR2 SO-DIMM</p></div>
<p>DDR2 has its gap at about 16mm along and can be bought as PC2-3200 (400mhz), PC2-4200 (533mhz), PC2-5300 (667mhz), PC2-6400 (800mhz) and, very rarely, as PC2-8500 (1066mhz). There is lots of this memory around and at the moment it is about two thirds of the price of DDR1.</p>
<p>The positioning of the gap means that you cannot fit DDR2 into a DDR1 slot and vice versa. However, they do look very similar and the pins line up exactly. From experience I have found that the easiest way to tell the difference (without cheating and looking at the label) is that if you hold it with the small group of pins to your left, in DDR1 the notch butts up against the smaller group of pins with a small space to its right before the longer group starts, while DDR2&#8242;s notch butts up against the larger group with a space to its left.</p>
<div id="attachment_203" class="wp-caption aligncenter" style="width: 410px"><a href="http://darkblue.co.uk/wp-content/uploads/2010/08/memoryddr3.jpg"><img class="size-full wp-image-203" title="204pin DDR3 SO-DIMM" src="http://darkblue.co.uk/wp-content/uploads/2010/08/memoryddr3.jpg" alt="204pin DDR3 SO-DIMM" width="400" height="184" /></a><p class="wp-caption-text">204pin DDR3 SO-DIMM</p></div>
<p>The latest and greatest memory is DDR3. This has 204pins, 102 each side arranged into groups of 36 and 66 pins. The gap in this memory is about 25mm along. At the moment it can be bought as PC3-8500 (1066mhz) and PC3-10600 (1333mhz) though I&#8217;m sure it will be readily available in faster speeds fairly soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2010/09/how-to-recognise-laptop-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Names(I): Dumping btconnect</title>
		<link>http://darkblue.co.uk/2010/08/domain-namesi-dumping-btconnect/</link>
		<comments>http://darkblue.co.uk/2010/08/domain-namesi-dumping-btconnect/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 14:44:59 +0000</pubDate>
		<dc:creator>Deb</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[btconnect]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email address]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[tiscali]]></category>
		<category><![CDATA[website address]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=170</guid>
		<description><![CDATA[They should have gone out with the millenium fireworks, but, like the Dome, ten years later, they&#8217;re still with us. You&#8217;ve all seen them, on the sides of expensively paintworked vans and adorning smart business cards everywhere, the jarring &#8216;myprofessionalsuccessfulcompany@btconnect.com&#8217; &#8230; <a href="http://darkblue.co.uk/2010/08/domain-namesi-dumping-btconnect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://darkblue.co.uk/wp-content/uploads/2010/08/van.jpg"><img src="http://darkblue.co.uk/wp-content/uploads/2010/08/van-300x175.jpg" alt="" title="van" width="300" height="175" class="alignleft size-medium wp-image-174" /></a>They should have gone out with the millenium fireworks, but, like the Dome, ten years later, they&#8217;re still with us. You&#8217;ve all seen them, on the sides of expensively paintworked vans and adorning smart business cards everywhere, the jarring &#8216;myprofessionalsuccessfulcompany@btconnect.com&#8217; email addresses.</p>
<p>OK so it&#8217;s not always btconnect, there are others, but the point is it looks like you haven&#8217;t a clue what an email address actually is, and either have not been established long enough to sort out a proper address or can&#8217;t afford it; neither of these inspire confidence. The most puzzling companies are the ones that have a perfectly good website address, but don&#8217;t use it for their email; once again they&#8217;re either clueless or their website company is ripping them off. </p>
<p>So for all you dot com virgins out there, let me explain.</p>
<p>For a small fee, you can have a &#8216;domain&#8217; of your very own. This is the bit after the @ sign where btconnect.com, hotmail.co.uk or tiscali.com goes at the moment. You can then have info@myprofessionalsuccessfulcompany.co.uk, sales@myprofessionalsuccessfulcompany.co.uk, jez@myprofessionalsuccessfulcompany.co.uk or anything else you would like. </p>
<p>It doesn&#8217;t cost that much, usually just an annual or bi-annual fee for registration and another to handle email sending, receiving and storage. You can even use this domain as the address for your website when you get really confident.</p>
<p>You don&#8217;t even have to abandon your current way of reading your email, in fact paying for a professional service should offer you more ways to access it, not less. If you currently have it coming to a program like Outlook, Outlook Express or Thunderbird on your computer, you can carry on doing that. If you prefer to log into a webpage to read it when you&#8217;re out and about, then you should be able to continue doing that.</p>
<p>So to sum up, getting a professional looking email address is important and not that expensive (although those 99p, or free and thrown in with your internet access ones <strong>are</strong> too good to be true, read the small print). If you agree, then you now have to choose the right domain for you and your company, I&#8217;ll cover this in Domain Names(II): Pick n Mix, coming soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2010/08/domain-namesi-dumping-btconnect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love Google Street view</title>
		<link>http://darkblue.co.uk/2010/07/i-love-google-street-view/</link>
		<comments>http://darkblue.co.uk/2010/07/i-love-google-street-view/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 11:27:02 +0000</pubDate>
		<dc:creator>Deb</dc:creator>
				<category><![CDATA[Enthusiasm]]></category>
		<category><![CDATA[Google Street View]]></category>
		<category><![CDATA[maps]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=138</guid>
		<description><![CDATA[I admit it, my awareness of spacial relations is pretty bad. I can read maps, but sometimes have problems relating what I see on the page or screen to what is there in front of me. When going to see &#8230; <a href="http://darkblue.co.uk/2010/07/i-love-google-street-view/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I admit it, my awareness of spacial relations is pretty bad. I can read maps, but sometimes have problems relating what I see on the page or screen to what is there in front of me. When going to see someone for the first time I used to have to write down the streets in front of (and after) the one I needed to turn up in case I didn&#8217;t spot it in time.</p>
<p>Street view has changed all that. Instead of having to remember &#8217;2nd on the left after the roundabout then 3rd right&#8217; I can fire up street view and tell myself, &#8216;Left at Cafe Vienna then right just after the newsagents&#8217;. Much more me.</p>
<p>OK so it sometimes throws me if those children are <em>not</em> playing football in the sidestreet and that bald man is <em>not</em> waiting at the crossing, but&#8230; even Google isn&#8217;t perfect.</p>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2010/07/i-love-google-street-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 essential pieces of equipment for mending PCs and laptops</title>
		<link>http://darkblue.co.uk/2010/07/top-5-essential-pieces-of-equipment-for-mending-pcs-and-laptops/</link>
		<comments>http://darkblue.co.uk/2010/07/top-5-essential-pieces-of-equipment-for-mending-pcs-and-laptops/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 08:56:32 +0000</pubDate>
		<dc:creator>Deb</dc:creator>
				<category><![CDATA[Lists]]></category>
		<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[bead tray]]></category>
		<category><![CDATA[iPod opener]]></category>
		<category><![CDATA[laptop repair]]></category>
		<category><![CDATA[mend laptops]]></category>
		<category><![CDATA[mend pcs]]></category>
		<category><![CDATA[nail varnish remover]]></category>
		<category><![CDATA[pc repair]]></category>
		<category><![CDATA[post it notes]]></category>
		<category><![CDATA[pry tool]]></category>
		<category><![CDATA[solar powered light]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=82</guid>
		<description><![CDATA[I&#8217;m not including the usual stuff everyone has, like power meters, test screens, screw drivers etc., because that would be both obvious and boring. What I&#8217;m listing here are the things that all those years ago, as I opened my &#8230; <a href="http://darkblue.co.uk/2010/07/top-5-essential-pieces-of-equipment-for-mending-pcs-and-laptops/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not including the usual stuff everyone has, like power meters, test screens, screw drivers etc., because that would be both obvious and boring. What I&#8217;m listing here are the things that all those years ago, as I opened my first PC case, I never realised would become my new best friends.</p>
<p><strong>5. Post-it Notes</strong></p>
<p><a href="http://darkblue.co.uk/wp-content/uploads/2010/06/post-it-notes.jpg"><img src="http://darkblue.co.uk/wp-content/uploads/2010/06/post-it-notes-300x217.jpg" alt="" title="post-it-notes" width="300" height="217" align="left" style="padding-right:5px;"  class="alignnone size-medium wp-image-101" /></a>The computer has a password, slap it on a post-it. The computer is awaiting parts, slap it on a post-it. The computer has its COA in an inaccessible place, slap it on a post-it. You have to leave the repair at a complicated place while you go and rescue your cat/dog/mother from up a tree, slap it on a post-it. You need to remember how much the parts cost before handing it over to accounts, slap it on a post-it. </p>
<p>They really are essential and <span style="color:#ff7800; font-weight:bold;">need</span> <span style="color:#00bc3e; font-weight:bold;">to</span> <span style="color:#00a8ff; font-weight:bold;">be</span> <span style="color:#f44e9d; font-weight:bold;">neon</span>, the brighter the better.</p>
<p><strong>4. My Trusty Bead Tray</strong></p>
<p><a href="http://darkblue.co.uk/wp-content/uploads/2010/06/bead-tray-300.jpg"><img src="http://darkblue.co.uk/wp-content/uploads/2010/06/bead-tray-300-300x157.jpg" alt="" title="bead-tray-300" width="300" height="157" align="left" style="padding-right:5px;"  class="alignnone size-medium wp-image-102" /></a>A see-through, plastic, bead tray split into 32 tiny square compartments, with a lid that locks closed tight enough that not even the tiniest ipod screw can exit its designated square. I haven&#8217;t lost a screw since I got it, apart from the odd one I dropped on the floor and I&#8217;m working on a spider powered metal detector to solve that one.</p>
<p><strong>3. Plastic iPod Openers/Pry Tools</strong></p>
<p><a href="http://darkblue.co.uk/wp-content/uploads/2010/06/prytools.jpg"><img src="http://darkblue.co.uk/wp-content/uploads/2010/06/prytools-300x206.jpg" alt="" title="prytools" width="300" height="206" align="left" style="padding-right:5px;"  class="alignnone size-medium wp-image-103" /></a>I buy these in bulk, they are fabulous for jabbing into anything you don&#8217;t want to leave scratches on. Especially those laptop keyboard bevels you usually need to lever off before you can get at any of the juicy bits. I admit, sometimes you need a bit of screwdriver powered brute force and ignorance, but, if you want to leave a laptop/iPhone/remote control exactly as you found it, they are the business.</p>
<p><strong>2. Heavy-Based Solar Powered Light</strong></p>
<p><a href="http://darkblue.co.uk/wp-content/uploads/2010/06/solar-lamp.jpg"><img src="http://darkblue.co.uk/wp-content/uploads/2010/06/solar-lamp-238x300.jpg" alt="" title="solar-lamp" width="238" height="300" align="left" style="padding-right:5px;" class="alignnone size-medium wp-image-97" /></a>The ones they sell at Ikea are ideal. In the past I have used torches, head-band lights and glow-sticks, in fact everything but naked flame, but nothing beats one of these. The base stays exactly where you put it, without tipping, while you bend and wiggle the long neck to direct the light just where you need it. No wires, no batteries either, and when you&#8217;ve finished you just pop it on the windowsill and it&#8217;s soon ready for yet another wrestle with a motherboard&#8217;s f-panel connectors.</p>
<p><strong>1. Nail Varnish Remover</strong></p>
<p><a href="http://darkblue.co.uk/wp-content/uploads/2010/06/nail-varnish-remover.jpg"><img src="http://darkblue.co.uk/wp-content/uploads/2010/06/nail-varnish-remover-300x275.jpg" alt="" title="nail-varnish-remover" width="300" height="275" align="left" style="padding-right:5px;"  class="alignnone size-medium wp-image-104" /></a>The cheaper and nastier the better. You really don&#8217;t want anything that is kind to hands. It cleans off the nastiest gunk, it removes years old permanent marks from unsuitably graffitied plastic monitors and cases, it cleans up dried-on thermal paste in seconds, removes labels and evaporates instantly. Not for use in enclosed spaces I admit, but there is no way I could ever manage without it.</p>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2010/07/top-5-essential-pieces-of-equipment-for-mending-pcs-and-laptops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wanted: 16GB iPhone 4</title>
		<link>http://darkblue.co.uk/2010/06/wanted-16gb-iphone-4/</link>
		<comments>http://darkblue.co.uk/2010/06/wanted-16gb-iphone-4/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 13:53:12 +0000</pubDate>
		<dc:creator>Susan</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[16GB iPhone 4]]></category>
		<category><![CDATA[iPhone 3GS]]></category>
		<category><![CDATA[iPhone 4]]></category>
		<category><![CDATA[O2 Store]]></category>
		<category><![CDATA[O2 Website]]></category>
		<category><![CDATA[Preston O2]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=72</guid>
		<description><![CDATA[Did you know that there are absolutely no iPhone 4s in the North West? Yup, I wasn’t surprised either; especially after walking past the queue of at least fifty people coming out of the Preston O2 store at 8.13am on &#8230; <a href="http://darkblue.co.uk/2010/06/wanted-16gb-iphone-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Did you know that there are absolutely no iPhone 4s in the North West? </p>
<p>Yup, I wasn’t surprised either; especially after walking past the queue of at least fifty people coming out of the Preston O2 store at 8.13am on launch day. Yet the saddest part about that queue is that I was almost in it. But I took one look at the size of it, which went past 2 shops and round a corner, and decided I would be very late to work and probably wouldn’t be able to get one anyway.</p>
<p>Today I ended up ringing all of the local O2 stores in the vain hope that I might be able to get my hands on one. Yet after many phone calls, and even one store putting the phone down on me, I sat back and sighed, knowing that I wasn’t going to get my hands on one for at least another week.<span id="more-72"></span></p>
<p>Now this phone may sound, from my desperate attempts to find one, like it’s for me&#8230;well, it’s not. The idea here is that if my boss gets a new iPhone 4, then I can have his iPhone 3GS; sounds like a fair deal to me. The only problem is that my current phone has a terrible battery life and freezes up when you try to do something overly complicated, like sending a text message. So I could definitely do with getting him an iPhone 4 very soon.</p>
<p>So if you want me then you’ll find me checking the online O2 stock availability every time it updates and desperately praying, for the sake of having a working phone, that a local iPhone 4 will pop up in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2010/06/wanted-16gb-iphone-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Renewal Group &#8211; scam letters</title>
		<link>http://darkblue.co.uk/2010/06/domain-renewal-group-scam-letters/</link>
		<comments>http://darkblue.co.uk/2010/06/domain-renewal-group-scam-letters/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 13:45:12 +0000</pubDate>
		<dc:creator>Deb</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[domain registry scam]]></category>
		<category><![CDATA[domain renewal group]]></category>
		<category><![CDATA[domain renewal scam]]></category>
		<category><![CDATA[domain scam]]></category>
		<category><![CDATA[internet scam]]></category>
		<category><![CDATA[website scam]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=70</guid>
		<description><![CDATA[Have you received a letter from the Domain Renewal Group? It will look like a regular invoice a busy business might pay without thinking about it and, if you read further, there is a lot of scary text saying that &#8230; <a href="http://darkblue.co.uk/2010/06/domain-renewal-group-scam-letters/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have you received a letter from the Domain Renewal Group?</p>
<p>It will look like a regular invoice a busy business might pay without thinking about it and, if you read further, there is a lot of scary text saying that if you don’t pay, you might lose the precious domain name that your business depends on (e.g. darkblue.co.uk for us &#8211; it&#8217;s your website address and email address, mainly.)</p>
<p>But don’t pay it, it’s a scam.</p>
<p>We had loads of these over the years from the group’s previous incarnations as ‘Domain Registry of America’ and ‘Domain Registry of Europe’, then we set the whois information on our domains to private and they went away.  Every domain has a public record of who owns it, in a similar way to all limited companies have a public record of who the directors are.  Of course, in this case you can lie blatantly or just block it and you don&#8217;t get in serious trouble with men in pin-striped suits with no sense of humour.</p>
<p>However, one of our clients recently got one of these and very sensibly called us to find out what it is all about. So we are repeating the warning: DON&#8217;T PAY IT, IT&#8217;S A SCAM.  We think that this company got the address details years ago, before we started marking all domains we host as private, and are starting to use them again.</p>
<p>Your real domain registrar (especially us) will not let your domain lapse, it’s their business and they don’t want to lose it. As domain sellers we get a reminder well in advance of the renewal date.</p>
<p>It’s very sad that a company can only get business by taking advantage of most people’s confusion over all things computer based, dressing up notices as invoices and scaring people into paying them.</p>
<p>An example of the letter can be found at <a href="http://www.powerdosh.com/scam-warning-domain-renewal-group/">http://www.powerdosh.com/scam-warning-domain-renewal-group/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2010/06/domain-renewal-group-scam-letters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to access search folders for shared mailboxes in Outlook 2007</title>
		<link>http://darkblue.co.uk/2010/05/how-to-access-search-folders-for-shared-mailboxes-in-outlook-2007/</link>
		<comments>http://darkblue.co.uk/2010/05/how-to-access-search-folders-for-shared-mailboxes-in-outlook-2007/#comments</comments>
		<pubDate>Tue, 25 May 2010 16:27:24 +0000</pubDate>
		<dc:creator>Edmund</dc:creator>
				<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[access search folders]]></category>
		<category><![CDATA[outlook 2007]]></category>
		<category><![CDATA[outlook shared search folders]]></category>
		<category><![CDATA[search folders]]></category>
		<category><![CDATA[shared mailbox]]></category>
		<category><![CDATA[shared mailboxes]]></category>
		<category><![CDATA[shared search folders]]></category>

		<guid isPermaLink="false">http://darkblue.co.uk/?p=64</guid>
		<description><![CDATA[I spent some time fiddling with this today and have finally solved it. Took a while to find something useful on Google, so I will note it here for my own reference and any Google refugees&#8230; I wanted my PA &#8230; <a href="http://darkblue.co.uk/2010/05/how-to-access-search-folders-for-shared-mailboxes-in-outlook-2007/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I spent some time fiddling with this today and have finally solved it.  Took a while to find something useful on Google, so I will note it here for my own reference and any Google refugees&#8230;</p>
<p>I wanted my PA to be able to see my search folders, especially the follow-up flagged items.  I eventually found that I could see them fine on her machine if I turned off cached mode, but as we access our Exchange server over a VPN this would get seriously annoying.  Turning cached mode back on meant that I could still see everything in my mailbox, but search folders were missing.</p>
<p>There are two things to do.  The first is to get the Exchange server to operate the search folders instead of just Outlook &#8211; this requires having the full-text indexer etc set up on the server, which is automatic from E2007 onwards anyway.  All you need to do is log onto the mailbox to be shared in online mode &#8211; i.e. disable cached mode &#8211; and access the search folders once.  This kicks the server and tells it to get on with it.  You can test this by logging onto the mailbox in OWA, if the search folders are there this is done.</p>
<p>The second thing is very simple and just requires going into advanced settings in the profile that&#8217;s accessing the shared mailbox and untick &#8216;download shared folders&#8217; under cached mode, but leave the cached mode box itself ticked.  Restart Outlook and they appear (NB &#8211; the mailbox needs to be opened under additional mailboxes, not just by file/open shared folder.)</p>
<p>This was one of those things that probably required more effort than it will ever save, but at least it&#8217;s done now&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://darkblue.co.uk/2010/05/how-to-access-search-folders-for-shared-mailboxes-in-outlook-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

