<?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>Phil Bayfield &#187; Software</title>
	<atom:link href="http://www.philbayfield.com/category/computers/comp-software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.philbayfield.com</link>
	<description>A little about me, my photos and some general geeky stuff!</description>
	<lastBuildDate>Sun, 05 Sep 2010 15:27:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Switching MySQL for MariaDB on Ubuntu.</title>
		<link>http://www.philbayfield.com/2010/07/11/switching-mysql-for-mariadb-on-ubuntu/</link>
		<comments>http://www.philbayfield.com/2010/07/11/switching-mysql-for-mariadb-on-ubuntu/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 11:36:35 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=449</guid>
		<description><![CDATA[MariaDB offers quite a few improvements over MySQL, mainly in the storage engines it provides. Firstly, the Maria engine is a crash safe version of MyISAM which in the future will also support transactions. Secondly, the XtraDB engine is an enhanced version of Innodb which can give considerable speed improvements over the standard Innodb engine. [...]]]></description>
			<content:encoded><![CDATA[<p>MariaDB offers quite a few improvements over MySQL, mainly in the storage engines it provides. Firstly, the Maria engine is a crash safe version of MyISAM which in the future will also support transactions. Secondly, the XtraDB engine is an enhanced version of Innodb which can give considerable speed improvements over the standard Innodb engine. There are many other features and improvements over the standard MySQL distribution, move info on the differences can be found here: <a href="http://askmonty.org/wiki/MariaDB_versus_MySQL">http://askmonty.org/wiki/MariaDB_versus_MySQL</a></p>
<p>The easiest way to install MariaDB is to add one of the repositories, I&#8217;ve used OurDelta:</p>
<div class="codesnip-container" >wget -O- http://ourdelta.org/deb/ourdelta.gpg | sudo apt-key add -<br />
sudo wget http://ourdelta.org/deb/sources/lucid-mariadb-ourdelta.list -O /etc/apt/sources.list.d/ourdelta.list</div>
<p>Then install MariaDB:</p>
<div class="codesnip-container" >sudo apt-get install mariadb-server-5.1</div>
<p>This should install MariaDB without any problems, it should also replace MySQL if you already installed it:</p>
<div class="codesnip-container" ># apt-get install mariadb-server-5.1<br />
Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
The following extra packages will be installed:<br />
  libmariadbclient16 libmysqlclient16 mariadb-client-5.1<br />
  mariadb-client-core-5.1 mariadb-server-core-5.1 mysql-common<br />
Suggested packages:<br />
  tinyca mailx mariadb-test<br />
The following packages will be REMOVED<br />
  libmysqlclient-dev libmysqlclient16-dev mysql-client mysql-client-5.1<br />
  mysql-client-core-5.1 mysql-server-5.1 mysql-server-core-5.1<br />
The following NEW packages will be installed<br />
  libmariadbclient16 mariadb-client-5.1 mariadb-client-core-5.1<br />
  mariadb-server-5.1 mariadb-server-core-5.1<br />
The following packages will be upgraded:<br />
  libmysqlclient16 mysql-common<br />
2 upgraded, 5 newly installed, 7 to remove and 8 not upgraded.</div>
<p>If you are upgrading from MySQL, you will probably be prompted to overwrite the my.cnf and for a new root password. I generally choose Y to overwrite and enter my existing root password to avoid issue.</p>
<p>You can also follow my previous post to upgrade the client library used by PHP, rather than installing the MySQL dev package, the Maria equivalent should be used:</p>
<div class="codesnip-container" >sudo apt-get install libmariadbclient16-dev</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/07/11/switching-mysql-for-mariadb-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Update Zend Server MySQL extensions</title>
		<link>http://www.philbayfield.com/2010/05/06/update-zend-server-mysql-extensions/</link>
		<comments>http://www.philbayfield.com/2010/05/06/update-zend-server-mysql-extensions/#comments</comments>
		<pubDate>Thu, 06 May 2010 08:39:09 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=430</guid>
		<description><![CDATA[As the MySQL extensions with Zend Server are out of date, I decided to update them as it&#8217;s pretty simple to do. Install the source package: sudo apt-get install php-5.2-source-zend-server or sudo apt-get install php-5.3-source-zend-server Install the MySQL client dev package: sudo apt-get install libmysqlclient16-dev Install autoconf: sudo apt-get install autoconf From this point onwards [...]]]></description>
			<content:encoded><![CDATA[<p>As the MySQL extensions with Zend Server are out of date, I decided to update them as it&#8217;s pretty simple to do.</p>
<p>Install the source package:</p>
<div class="codesnip-container" >sudo apt-get install php-5.2-source-zend-server</div>
<p>or</p>
<div class="codesnip-container" >sudo apt-get install php-5.3-source-zend-server</div>
<p>Install the MySQL client dev package:</p>
<div class="codesnip-container" >sudo apt-get install libmysqlclient16-dev</div>
<p>Install autoconf:</p>
<div class="codesnip-container" >sudo apt-get install autoconf</div>
<p>From this point onwards I ran as root as saves time having to sudo everything, I have also created symlinks for the binaries in /usr/local/zend/bin to /usr/local (php, phpize, php-config, pear, pecl etc)</p>
<p>Change to the extensions directory of the source you just installed:</p>
<div class="codesnip-container" >cd /usr/local/zend/share/php-source/php-5.3.2/</div>
<p>There are 3 extensions that need to be recompiled mysql, mysqli and pdo_mysql, the following procedure is the same for all 3:</p>
<div class="codesnip-container" >cd mysql<br />
./configure<br />
make<br />
cp modules/mysql.so /usr/local/zend/lib/php_extensions/</div>
<p>Finally restart Zend Server and all the MySQL extensions will be using the latest libraries.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/05/06/update-zend-server-mysql-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server on Ubuntu Lucid has dependency problems</title>
		<link>http://www.philbayfield.com/2010/05/06/zend-server-on-lucid-has-dependency-problems/</link>
		<comments>http://www.philbayfield.com/2010/05/06/zend-server-on-lucid-has-dependency-problems/#comments</comments>
		<pubDate>Thu, 06 May 2010 08:20:25 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=427</guid>
		<description><![CDATA[When trying to install Zend Server on Lucid you will be met with the following dependency problems: The following packages have unmet dependencies: php-5.2-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package. php-5.2-pdo-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package. php-5.2-mysqli-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package. Along with [...]]]></description>
			<content:encoded><![CDATA[<p>When trying to install Zend Server on Lucid you will be met with the following dependency problems:</p>
<div class="codesnip-container" >The following packages have unmet dependencies:<br />
  php-5.2-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package.<br />
  php-5.2-pdo-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package.<br />
  php-5.2-mysqli-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package.</div>
<p>Along with the rather unsatisfactory resolution:</p>
<div class="codesnip-container" >The following actions will resolve these dependencies:<br />
Keep the following packages at their current version:<br />
help-zend-server-ce [Not Installed]<br />
php-5.2-common-extensions-zend-server-ce [Not Installed]<br />
php-5.2-mysql-zend-server [Not Installed]<br />
php-5.2-mysqli-zend-server [Not Installed]<br />
php-5.2-pdo-mysql-zend-server [Not Installed]<br />
zend-server-ce-php-5.2 [Not Installed]</div>
<p>The reason for this error is that the Zend MySQL packages are built against MySQL 5.0 (despite the fact 5.1 has been GA for over a year now).</p>
<p>Ubuntu have removed MySQL 5.0 in Lucid, but the package from Karmic is usable and available here: <a href="http://ns2.canonical.com/pt/karmic/libmysqlclient15off">http://ns2.canonical.com/pt/karmic/libmysqlclient15off</a></p>
<p>Simply install this and Zend Server will install nicely.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/05/06/zend-server-on-lucid-has-dependency-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A shaky start for Ubuntu 10.04 Desktop</title>
		<link>http://www.philbayfield.com/2010/04/30/a-shaky-start-for-ubuntu-10-04-desktop/</link>
		<comments>http://www.philbayfield.com/2010/04/30/a-shaky-start-for-ubuntu-10-04-desktop/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 23:33:39 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=413</guid>
		<description><![CDATA[Whereas I have been running Lucid since beta1 on my laptop without too many issues, my desktop PC doesn&#8217;t get upgraded until release day. After eventually managing to download the ISO, loading 5 different email backups to find my Nero key and waiting half an hour for the Lightscribe to burn onto the CD I [...]]]></description>
			<content:encoded><![CDATA[<p>Whereas I have been running Lucid since beta1 on my laptop without too many issues, my desktop PC doesn&#8217;t get upgraded until release day.</p>
<p>After eventually managing to download the ISO, loading 5 different email backups to find my Nero key and waiting half an hour for the Lightscribe to burn onto the CD I finally got to boot the live CD&#8230;.</p>
<p>Flashing cursor&#8230;<br />
Power saver mode&#8230;<br />
[2 minutes go by]<br />
Screen powers on&#8230;<br />
Strange Windows 7 blockiness (presumably something left in the video memory)&#8230;<br />
[Another minute goes by]<br />
Desktop, finally.</p>
<p>Install goes smoothly, nice to see the migration wizard is disabled by default and has clear options, should you choose to use it.</p>
<p>Try to reboot and machine hangs with just the desktop background.</p>
<p>Reset, restart&#8230;<br />
The infamous flashing cursor&#8230;<br />
Login screen&#8230;</p>
<p>I attempt to login and get a popup about power saving not working do I still want to logout? Odd&#8230; No I want to login really <img src='http://www.philbayfield.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Click continue, it goes away, finally get to the desktop.</p>
<p>One thing is immediately clear, Plymouth = EPIC FAIL.<br />
So far it doesn&#8217;t work on Intel or Nvidia hardware, 2 of the 3 post popular video chip manufacturers!<br />
I guess this is what happens when you name something after a scummy little city hidden away in the south west of England&#8230;</p>
<p>Testing continues&#8230;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/04/30/a-shaky-start-for-ubuntu-10-04-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for missing boot screen with Ubuntu 10.04 betas/RC</title>
		<link>http://www.philbayfield.com/2010/04/26/fix-for-missing-boot-screen-with-ubuntu-10-04-betasrc/</link>
		<comments>http://www.philbayfield.com/2010/04/26/fix-for-missing-boot-screen-with-ubuntu-10-04-betasrc/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 00:09:31 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/2010/04/26/fix-for-missing-boot-screen-with-ubuntu-10-04-betasrc/</guid>
		<description><![CDATA[Here is a quick fix for the missing boot screen: echo FRAMEBUFFER=y > /etc/initramfs-tools/conf.d/splash update-initramfs -u Note that this fix does marginally slow down boot, but only by a few seconds.]]></description>
			<content:encoded><![CDATA[<p>Here is a quick fix for the missing boot screen:</p>
<div class="codesnip-container" >echo FRAMEBUFFER=y > /etc/initramfs-tools/conf.d/splash<br />
update-initramfs -u</div>
<p>Note that this fix does marginally slow down boot, but only by a few seconds.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/04/26/fix-for-missing-boot-screen-with-ubuntu-10-04-betasrc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing your Windows fonts on Ubuntu (via Wubi)</title>
		<link>http://www.philbayfield.com/2010/03/30/installing-your-windows-fonts-on-linux-via-wubi/</link>
		<comments>http://www.philbayfield.com/2010/03/30/installing-your-windows-fonts-on-linux-via-wubi/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:35:01 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=370</guid>
		<description><![CDATA[Here is a quick way to copy your Windows fonts over to an Ubuntu Wubi installation: mkdir ~/.fonts cp /host/WINDOWS/Fonts/*.tt* ~/.fonts/ cp /host/WINDOWS/Fonts/*.otf ~/.fonts/ Applications should then pick up all your Windows fonts]]></description>
			<content:encoded><![CDATA[<p>Here is a quick way to copy your Windows fonts over to an Ubuntu Wubi installation:</p>
<div class="codesnip-container" >mkdir ~/.fonts<br />
cp /host/WINDOWS/Fonts/*.tt* ~/.fonts/<br />
cp /host/WINDOWS/Fonts/*.otf ~/.fonts/</div>
<p>Applications should then pick up all your Windows fonts <img src='http://www.philbayfield.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/03/30/installing-your-windows-fonts-on-linux-via-wubi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 Preview (Desktop using VirtualBox)</title>
		<link>http://www.philbayfield.com/2010/03/24/ubuntu-10-04-preview-desktop-virtualbox/</link>
		<comments>http://www.philbayfield.com/2010/03/24/ubuntu-10-04-preview-desktop-virtualbox/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 16:41:14 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=350</guid>
		<description><![CDATA[Setup Setting up the desktop edition of Lucid with Virtualbox was a little problematic at first. Install went fine and I rebooted to find myself in a very small desktop which was rather sluggish. I opened up a terminal and installed the guest additions software: sudo ./VBoxLinuxAdditions-amd64.run (or use the x86 version for 32 bit). [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Setup</strong></p>
<p>Setting up the desktop edition of Lucid with Virtualbox was a little problematic at first. Install went fine and I rebooted to find myself in a very small desktop which was rather sluggish.</p>
<p>I opened up a terminal and installed the guest additions software:</p>
<div class="codesnip-container" >sudo ./VBoxLinuxAdditions-amd64.run</div>
<p> (or use the x86 version for 32 bit).</p>
<p>After a reboot there is a lot of screen flashing and eventually a message comes up about low graphics mode.</p>
<p>To fix this login and perform the following:</p>
<div class="codesnip-container" >gksudo gedit /usr/src/vboxvideo-3.1.4/vboxvideo_drm.c</div>
<p>Go to line 90:</p>
<div class="codesnip-container" >.ioctl = drm_ioctl,</div>
<p>Replace it with:</p>
<div class="codesnip-container" >#if defined(DRM_UNLOCKED) || LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 33)<br />
                 .unlocked_ioctl = drm_ioctl,<br />
#else<br />
                 .ioctl = drm_ioctl,<br />
#endif</div>
<p>Then run:</p>
<div class="codesnip-container" >sudo /etc/init.d/vboxadd setup</div>
<p>This solution came from this blog: <div style="float: left; text-align: center">
			    <a href="http://maxolasersquad.blogspot.com/2010/03/ubuntu-1004-lucid-lynx-alpha-in.html" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=http://maxolasersquad.blogspot.com/2010/03/ubuntu-1004-lucid-lynx-alpha-in.html" /></a><br /><a href="http://maxolasersquad.blogspot.com/2010/03/ubuntu-1004-lucid-lynx-alpha-in.html" target="_blank">http://maxolasersquad.blogspot.com/20...</a></div><br style="clear: both" /></p>
<p>After rebooting following this fix the mouse pointer is invisible, so another fix is needed:</p>
<p>Edit:</p>
<div class="codesnip-container" >/etc/X11/xorg.conf</div>
<p>Add:</p>
<div class="codesnip-container" >Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;Configured Mouse&#8221;<br />
Driver &#8220;vboxmouse&#8221;<br />
Option &#8220;CorePointer&#8221;<br />
EndSection</div>
<p>Reboot and everything should run nicely, including Compiz.</p>
<p>This solution came from here: <div style="float: left; text-align: center">
			    <a href="http://www.ubunturoot.com/2009/12/how-to-enable-mouse-integration-for.html" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=http://www.ubunturoot.com/2009/12/how-to-enable-mouse-integration-for.html" /></a><br /><a href="http://www.ubunturoot.com/2009/12/how-to-enable-mouse-integration-for.html" target="_blank">http://www.ubunturoot.com/2009/12/how...</a></div><br style="clear: both" /></p>
<p>Checking for updates, there are 245 updates just a few days after the release of the beta, the dev team have obviously been busy! Unfortunately the updates broke the VBox addons again so I had to run the setup command above again to fix this and reboot.</p>
<p>I had a minor issue with resizing the VBox window to fit my screen, it messed up the panels and I had to unlock/reorganise them to fix this.</p>
<p><strong>What&#8217;s new?</strong></p>
<p>The most obvious change is the new UI, it&#8217;s almost exactly like I have Karmic skinned now so a nice change. It&#8217;s much more like OSX than the previous Human skin. The only thing I&#8217;m not a fan of is the decision to move the minimise/maximise/close buttons to the left hand side of the window.</p>
<p><a href="http://www.philbayfield.com/wp-content/uploads/2010/03/Screenshot-8.png"><img src="http://www.philbayfield.com/wp-content/uploads/2010/03/Screenshot-8.png" alt="" title="Ubuntu Lucid" width="800" height="556" class="aligncenter size-full wp-image-358" /></a></p>
<p>It&#8217;s also quite noticeable that Google has disappeared and been replaced by Yahoo. I can&#8217;t help wonder how many people won&#8217;t change their default search provider right back to Google as the first thing they do with Firefox!</p>
<p>The next thing I noticed was that the &#8216;status&#8217; button on the top panel had been given a bit of a rework, it now includes the ability to add &#8216;broadcast channels&#8217; which are simply social network integration for Facebook, Twitter etc.</p>
<p><a href="http://www.philbayfield.com/wp-content/uploads/2010/03/Screenshot-9.png"><img src="http://www.philbayfield.com/wp-content/uploads/2010/03/Screenshot-9.png" alt="" title="Social Networking" width="800" height="557" class="aligncenter size-full wp-image-361" /></a></p>
<p>This pretty much sums up the noticeable changes, under the scenes there are obviously numerous package updates, what difference this makes to the OS will yet to be determined.</p>
<p><strong>First Impressions</strong></p>
<p>Overall the new design looks nice albeit a little too OSX-ish for my liking, the new colour screme is great though. The social networking integration is nice, the replacement of Google with Yahoo, not so much.<br />
I had a few issues with slowness, crashes of plymouthd and occasional other errors but while this is a beta version these are to be expected.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/03/24/ubuntu-10-04-preview-desktop-virtualbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 &#8211; Looks like it will ship with PHP 5.3</title>
		<link>http://www.philbayfield.com/2010/03/04/ubuntu-10-04-looks-like-it-will-ship-with-php-5-3/</link>
		<comments>http://www.philbayfield.com/2010/03/04/ubuntu-10-04-looks-like-it-will-ship-with-php-5-3/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 07:13:18 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=334</guid>
		<description><![CDATA[I took a look on Launchpad today to see if there was any indication as to which version of PHP Ubuntu had decided to ship with the next release. As it&#8217;s an LTS release there is always the possibility that they may go for the slightly more stable options than the slightly more experimental options [...]]]></description>
			<content:encoded><![CDATA[<p>I took a look on Launchpad today to see if there was any indication as to which version of PHP Ubuntu had decided to ship with the next release. As it&#8217;s an LTS release there is always the possibility that they may go for the slightly more stable options than the slightly more experimental options as they will have to support this edition for the next 3 years.</p>
<p>It appears from a package search that 2 days ago PHP 5.3.1 packages were added to Lucid. It&#8217;s quite a big step, and will be interesting if they also include a 5.2.x release along side it as so many applications are not ready for 5.3 yet.</p>
<p>More information can be found on Launchpad: <div style="float: left; text-align: center">
			    <a href="https://launchpad.net/ubuntu/+source/php5" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=https://launchpad.net/ubuntu/+source/php5" /></a><br /><a href="https://launchpad.net/ubuntu/+source/php5" target="_blank">https://launchpad.net/ubuntu/+source/...</a></div><br style="clear: both" /></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/03/04/ubuntu-10-04-looks-like-it-will-ship-with-php-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft finally release a virus scanner</title>
		<link>http://www.philbayfield.com/2009/10/10/microsoft-finally-release-a-virus-scanner/</link>
		<comments>http://www.philbayfield.com/2009/10/10/microsoft-finally-release-a-virus-scanner/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 10:19:12 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=112</guid>
		<description><![CDATA[Microsoft Security Essentials has now been officially released (conveniently just before Windows 7 release, perhaps?). I switched it out with Kaspersky about a week ago and so far so good. Kaspersky for Windows 7 is buggy and causes many slow down issues, it may be a beta but at this close to the October release [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Security Essentials has now been officially released (conveniently just before Windows 7 release, perhaps?).</p>
<p>I switched it out with Kaspersky about a week ago and so far so good. Kaspersky for Windows 7 is buggy and causes many slow down issues, it may be a beta but at this close to the October release date it&#8217;s a pretty poor offering. MSSE works like a charm, no slow down issues, virus tests on YouTube show excellent results, plus the best thing is it&#8217;s completely 100% free.</p>
<p>Find it here:</p>
<p><div style="float: left; text-align: center">
			    <a href="http://www.microsoft.com/Security_Essentials/" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=http://www.microsoft.com/Security_Essentials/" /></a><br /><a href="http://www.microsoft.com/Security_Essentials/" target="_blank">http://www.microsoft.com/Security_Ess...</a></div><br style="clear: both" /></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2009/10/10/microsoft-finally-release-a-virus-scanner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
