<?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>Redaware Limited - Computer Services &#38; Business IT Solutions in Tenbury Wells, Worcestershire &#187; Open Source</title>
	<atom:link href="http://www.redaware.net/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redaware.net</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 10:49:12 +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>PHP Snippet: Dynamic copyright notice</title>
		<link>http://www.redaware.net/2009/11/php-snippet-dynamic-copyright-notice/</link>
		<comments>http://www.redaware.net/2009/11/php-snippet-dynamic-copyright-notice/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 14:22:39 +0000</pubDate>
		<dc:creator>tsymonds</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.redaware.net/?p=148</guid>
		<description><![CDATA[This how to use PHP to code a dynamic copyright notice:]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>This how to use PHP to code a dynamic copyright notice: </p>
<pre class="brush: php; title: ; notranslate">
&lt;p&gt;
&lt;?php
$firstyear = &quot;2009&quot;;
$currentyear = date(&quot;Y&quot;);
if ($currentyear==$firstyear)
  echo &quot;copyright © &quot;.$firstyear.&quot; company Limited, all rights reserved.&quot;;
else
  echo &quot;copyright © &quot;.$firstyear.&quot;-&quot;.$currentyear.&quot; company Limited, all rights reserved.&quot;;
?&gt;
&lt;p&gt;
</pre>
<div class="shr-publisher-148"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.redaware.net/2009/11/php-snippet-dynamic-copyright-notice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing VMware Server on CentOS (in text mode)</title>
		<link>http://www.redaware.net/2009/08/installing-vmware-server-on-centos/</link>
		<comments>http://www.redaware.net/2009/08/installing-vmware-server-on-centos/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 08:37:21 +0000</pubDate>
		<dc:creator>tsymonds</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[VMWare Server]]></category>

		<guid isPermaLink="false">http://www.redaware.net/?p=1</guid>
		<description><![CDATA[VMware, Microsoft and Sun all provide free hosted virtualisation products. &#8220;Hosted&#8221; require virtualization software to be installed onto an underlying operating system like Windows or Linux. This post demonstrates the basic concepts of virtualization, we have chosen to install VMware server on minimum installation of Linux (CentOS). This solution provides a reduced host O/S overhead, [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>VMware, Microsoft and Sun all provide free hosted virtualisation products. &#8220;Hosted&#8221; require virtualization software to be installed onto an underlying operating system like Windows or Linux.</p>
<p>This post demonstrates the basic concepts of virtualization, we have chosen to install VMware server on minimum installation of Linux (CentOS). This solution provides a reduced host O/S overhead, this will allow more disk and memory resources to be allocated for our virtual machines.</p>
<p>VMware recommends that Server should only host between two and four virtual servers. This provides a more than adequate solution for small and medium business looking to consolidate their server infrastructure.<br />
CentOS is a Linux distribution that is based on Red Hat Enterprise Linux.</p>
<p>Before contining, you will need to download CentOS ISOs, which is available as a free down from: <a href="http://http://www.centos.org">http://www.centos.org</a></p>
<p>To install CentOS 5 in text mode, type linux text at the command line and press enter.</p>
<pre class="brush: bash; title: ; notranslate">
linux text
</pre>
<p>Use the tab and enter keys to navigate around the wizard.<br />
Install the following packages:</p>
<ul>
<li>Base</li>
<li>Developement Libraries</li>
<li>Developement Tools</li>
<li>Server Configuration Tools</li>
</ul>
<p>Remember to make a note of root’s password.</p>
<p>After the installation is complete and the server has rebooted, log on as root and update the server using the following commands:</p>
<pre class="brush: bash; title: ; notranslate">
yum list updates
yum update
</pre>
<p>Install the xinetd package using the following command:</p>
<pre class="brush: bash; title: ; notranslate">
yum install xinetd
</pre>
<p>Check the kernel version, type the following command and make a note of the version:</p>
<pre class="brush: bash; title: ; notranslate">
uname –r
</pre>
<p>The output will look similar to this 2.6.18.92.el5</p>
<p>Check that the installed kernel –devel package corresponds to your current kernel version.</p>
<pre class="brush: bash; title: ; notranslate">
yum list installed kernel-devel*
</pre>
<p>Using a computer with an Internet connection, download the Linux version of VMware server 2 from: <a href="http://http://www.vmware.com/download/server">http://www.vmware.com/download/server/</a></p>
<p>Burn downloaded .tar.gz file to CD.</p>
<p>Create a CD mount point:</p>
<pre class="brush: bash; title: ; notranslate">
cd mnt
mkdir cdrom
</pre>
<p>Insert the CD and mount it using the following command</p>
<pre class="brush: bash; title: ; notranslate">
mount /dev/hdc /mnt/cdrom
</pre>
<p>Unzip the file on server the CD to the tmp directory. Then un-mount the CD.</p>
<pre class="brush: bash; title: ; notranslate">
cd /tmp
tar zxf /mnt/cdrom/VMware-console-&amp;lt;version&amp;gt;.tar.gz
umount /mnt/cdrom
</pre>
<p>Run the installation script.</p>
<pre class="brush: bash; title: ; notranslate">
cd vmware-console-distrib
./vmware-install.pl
</pre>
<p>Accept the defaults.</p>
<p>Enable the firewall and disable SELinux.</p>
<pre class="brush: bash; title: ; notranslate">
System-config-securitylevel
</pre>
<p>Add exceptions for the following ports by using the Customize button:</p>
<ul>
<li> 902:tcp</li>
<li>8222:tcp</li>
<li>8333:tcp</li>
</ul>
<p>Choose OK, and OK again.</p>
<p>Restart the server:</p>
<pre class="brush: bash; title: ; notranslate">
Shutdown –r now
</pre>
<p>You can now connect to your VMware server using a web browser, replace <em>&lt;server&gt;</em> with the hostname or IP address of your server.</p>
<p>http://<em>&lt;server&gt;</em>:8222</p>
<p>https://<em>&lt;server&gt;</em>:8333</p>
<div class="shr-publisher-1"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.redaware.net/2009/08/installing-vmware-server-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

