<?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>Debian - Base Six</title>
	<atom:link href="https://base6.com/tag/debian/feed/" rel="self" type="application/rss+xml" />
	<link>https://base6.com/</link>
	<description>James Furness&#039;s blog</description>
	<lastBuildDate>Thu, 30 Jul 2009 22:04:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.3.1</generator>
	<item>
		<title>Server upgrade to Intel Atom Mini-ITX</title>
		<link>https://base6.com/2009/07/30/server-upgrade-to-intel-atom-mini-itx/</link>
		
		<dc:creator><![CDATA[James Furness]]></dc:creator>
		<pubDate>Thu, 30 Jul 2009 22:04:41 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[atom]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[ITX]]></category>
		<category><![CDATA[morex]]></category>
		<guid isPermaLink="false">https://base6.com/?p=74</guid>

					<description><![CDATA[<p>My home linux server (formerly my desktop PC), which has been sitting in the corner of my lounge for a few years (with all fans other than the CPU fan unplugged in order to keep the noise down), finally blew up a few weeks ago. The motherboard was loading the BIOS but failing to recognise [&#8230;]</p>
<p>The post <a href="https://base6.com/2009/07/30/server-upgrade-to-intel-atom-mini-itx/">Server upgrade to Intel Atom Mini-ITX</a> first appeared on <a href="https://base6.com/">Base Six</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>My home linux server (formerly my desktop PC), which has been sitting in the corner of my lounge for a few years (with all fans other than the CPU fan unplugged in order to keep the noise down), finally blew up a few weeks ago. The motherboard was loading the BIOS but failing to recognise the HDDs or boot from a CD despite the fact the HDD/CD seemed fine in another PC, so I presumed that the Southbridge had failed due to overheating.</p>
<p>I decided to switch to a low-power <a href="http://en.wikipedia.org/wiki/Mini-ITX">Mini-ITX</a> based design rather than replacing the broken motherboard with a comparable one, and after a quick bit of research decided upon an Intel <a href="http://www.intel.com/products/desktop/motherboards/D945GCLF2-D945GCLF2D/D945GCLF2-D945GCLF2D-overview.htm">D945GCLF2</a> motherboard &#8211; which is based around the Atom 330 (dual core 1.6 GHz) processor, 2 Gb of RAM and a Morex Venux 668 case from <a href="http://www.itx-warehouse.co.uk/">ITX Warehouse</a>. A complete PC (excepting disks) with change to spare from £150 &#8211; pretty impressive!</p>
<p>The parts arrived two days later (I ordered after the 5pm cutoff), and within a few hours everything was installed in the new case and ready to go. I was amazed as Debian booted off of the old disk without any issues (try changing the motherboard architecture on Windows without reinstalling from scratch!). After some slight issues with the network I eventually realised the new network card was coming up as eth1 rather than eth0. A quick check of google revealed that the old network card needed to be <a href="http://forums.gentoo.org/viewtopic-t-689077-start-0-postdays-0-postorder-asc-highlight-.html">removed</a> from <code>/etc/udev/rules.d/70-persistent-net.rules</code>. Following this everything was up and running as before.</p>
<p>The fan on the D945GCLF2 is apparently notorious for becoming very noisy after a few weeks, and the fans in the case are of a similar diameter, so I am expecting my next project will be to replace these with either low-noise fans or passive cooling.</p><p>The post <a href="https://base6.com/2009/07/30/server-upgrade-to-intel-atom-mini-itx/">Server upgrade to Intel Atom Mini-ITX</a> first appeared on <a href="https://base6.com/">Base Six</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Patching Apache on Debian</title>
		<link>https://base6.com/2009/06/07/patching-apache-on-debian/</link>
					<comments>https://base6.com/2009/06/07/patching-apache-on-debian/#comments</comments>
		
		<dc:creator><![CDATA[James Furness]]></dc:creator>
		<pubDate>Sun, 07 Jun 2009 22:56:17 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[debian package]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[source package]]></category>
		<guid isPermaLink="false">https://base6.com/?p=18</guid>

					<description><![CDATA[<p>Steps for applying a patch to the Apache source tree and building a Debian package of the patched Apache in order to install via apt as normal.</p>
<p>The post <a href="https://base6.com/2009/06/07/patching-apache-on-debian/">Patching Apache on Debian</a> first appeared on <a href="https://base6.com/">Base Six</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Steps for applying a patch to the Apache source tree and building a Debian package of the patched Apache in order to install via apt as normal.<br />
<span id="more-18"></span></p>
<ol>
<li>Download the source package and build dependencies:</li>
<blockquote>
<pre>apt-get source apache2
apt-get build-dep apache2</pre>
</blockquote>
<li>Apply the patch to the source:</li>
<blockquote>
<pre>cd apache2-2.2.9/
patch -p1 &lt; <em>patchfile</em></pre>
</blockquote>
<li>Build the debian package:</li>
<blockquote>
<pre>dpkg-buildpackage -uc -us -b</pre>
</blockquote>
<li>List the currently installed apache2 packages:</li>
<blockquote>
<pre>dpkg -l | egrep '^i+ +apache2'</pre>
</blockquote>
<li>Install the appropriate newly built packages (all the packages listed in the previous step) and restart apache:</li>
<blockquote>
<pre>cd ..
dpkg -i apache2_2.2.9-10+lenny2_all.deb
dpkg -i apache2-mpm-prefork_2.2.9-10+lenny2_amd64.deb
dpkg -i apache2-prefork-dev_2.2.9-10+lenny2_amd64.deb
dpkg -i apache2-utils_2.2.9-10+lenny2_amd64.deb
dpkg -i apache2.2-common_2.2.9-10+lenny2_amd64.deb

apache2ctl restart</pre>
</blockquote>
</ol>
<p>Simples!</p><p>The post <a href="https://base6.com/2009/06/07/patching-apache-on-debian/">Patching Apache on Debian</a> first appeared on <a href="https://base6.com/">Base Six</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://base6.com/2009/06/07/patching-apache-on-debian/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
