<?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>edafe.org &#187; linux</title>
	<atom:link href="http://edafe.org/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://edafe.org</link>
	<description>edafe.org is the personal site of Edafe Knabe.</description>
	<lastBuildDate>Fri, 03 Feb 2012 08:24:13 +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 applications making GRUB 2 unbootable</title>
		<link>http://edafe.org/2010/08/windows-applications-making-grub-2-unbootable/</link>
		<comments>http://edafe.org/2010/08/windows-applications-making-grub-2-unbootable/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 20:03:05 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[antifeature]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[destruction]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[malpractice]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=5837</guid>
		<description><![CDATA[&#8220;We need to defend ourselves against the predatory practices of some companies making us look bad: a relatively small number of people do enough detective work to realise that it&#8217;s the fault of a particular Windows application, but many more &#8230; <a href="http://edafe.org/2010/08/windows-applications-making-grub-2-unbootable/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;We need to defend ourselves against the predatory practices of some companies making us look bad: a relatively small number of people do enough detective work to realise that it&rsquo;s the fault of a particular Windows application, but many more simply blame our operating system because it won&rsquo;t start any more.&rdquo; Debian developer Colin Watson asks for your help in an effort to mitigate the problems caused by <a href="http://wiki.mako.cc/antifeatures" target="_blank">antifeatures built into Windows software</a> that result in broken Windows/Linux double-boot systems.<br /><a href="http://www.chiark.greenend.org.uk/ucgi/~cjwatson/blosxom/debian/2010-08-28-windows-applications-making-grub2-unbootable.html" target="_blank">www.chiark.greenend.org.uk/ucgi/~cjwatson/blosxom</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2010/08/windows-applications-making-grub-2-unbootable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirecting mail for the local root user</title>
		<link>http://edafe.org/2010/01/redirecting-mail-for-the-local-root-user-2/</link>
		<comments>http://edafe.org/2010/01/redirecting-mail-for-the-local-root-user-2/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 12:46:23 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unr]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=5768</guid>
		<description><![CDATA[postfix is Ubuntu&#8217;s default mail transfer agent (MTA) and can be configured to deliver mail using a relay host that requires SMTP authentication. Get the necessary packages with the following command: user@ubuntu:~$ sudo apt-get install postfix bsd-mailx Begin to configure &#8230; <a href="http://edafe.org/2010/01/redirecting-mail-for-the-local-root-user-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>postfix</em> is Ubuntu&rsquo;s default mail transfer agent (MTA) and can be configured to deliver mail using a <a href="http://en.wikipedia.org/wiki/SMTP-AUTH" target="_blank">relay host that requires SMTP authentication</a>.</p>
<p>Get the necessary packages with the following command:</p>
<p><code>user@ubuntu:~$ sudo apt-get install postfix bsd-mailx</code></p>
<p>Begin to configure your <em>postfix</em> installation by choosing <em>satellite system</em> as the general type of configuration. Enter the local machine name as the mail name (eg mycomputer.edafe.org) and the SMTP server address of your email service provider as the SMTP relay host (eg smtp.relayhost.com).</p>
<p>Edit the file <em>/etc/postfix/main.cf</em> and add the following:</p>
<p><code>smtp_sasl_auth_enable = yes<br />smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd<br />smtp_sasl_security_options =<br />relay_domains =</code></p>
<p>Create the file <em>/etc/postfix/sasl_passwd</em> and make the following entries:</p>
<p><code>smtp.relayhost.com user:password</code></p>
<p>Substitute <em>smtp.relayhost.com</em> with the address of the SMTP relay host and <em>user:password</em> with your login details.</p>
<p>Continue by executing the following three commands:</p>
<p><code>user@ubuntu:~$ sudo chown root.root /etc/postfix/sasl_passwd<br />user@ubuntu:~$ sudo chmod 600 /etc/postfix/sasl_passwd<br />user@ubuntu:~$ sudo postmap hash:/etc/postfix/sasl_passwd</code></p>
<p>Instruct <em>postfix</em> to reload its settings with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/postfix reload</code></p>
<h4>Making changes to the alias table</h4>
<p>The aliases table provides a system-wide mechanism to redirect mail for local recipients.</p>
<p>Edit the file <em>/etc/aliases</em> to contain the following entries:</p>
<p><code>postmaster: root<br />root: user@yourdomain.com</code></p>
<p>Substitute <em>user@yourdomain.com</em> with the email address that you would like mail for the root user to be redirected to.</p>
<p>Finally, update <em>/etc/aliases.db</em> using the following command:</p>
<p><code>user@ubuntu:~$ sudo newaliases</code></p>
<p>Mail for the local root user from now on will automatically be forwarded to <em>user@yourdomain.com</em> , using <em>smtp.relayhost.com</em> as the relay host.<br /><a href="http://www.postfix.org/BASIC_CONFIGURATION_README.html" target="_blank">www.postfix.org</a>, <a href="https://help.ubuntu.com/community/Postfix" target="_blank">help.ubuntu.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2010/01/redirecting-mail-for-the-local-root-user-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring hard disks with smartmontools</title>
		<link>http://edafe.org/2009/12/monitoring-hard-disks-with-smartmontools-2/</link>
		<comments>http://edafe.org/2009/12/monitoring-hard-disks-with-smartmontools-2/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 01:56:13 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[smart]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unr]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=5737</guid>
		<description><![CDATA[SMART stands for Self-Monitoring, Analysis and Reporting Technology and is built into most modern hard disks. The smartd daemon is part of smartmontools and monitors a disk&#8217;s SMART data for any signs of hardware problems. SMART is available with Parallel &#8230; <a href="http://edafe.org/2009/12/monitoring-hard-disks-with-smartmontools-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>SMART stands for Self-Monitoring, Analysis and Reporting Technology and is built into most modern hard disks. The <em>smartd</em> daemon is part of <em>smartmontools</em> and <a href="http://www.linuxjournal.com/article/6983" target="_blank">monitors a disk&rsquo;s SMART data</a> for any signs of hardware problems.</p>
<p>SMART is available with Parallel and Serial ATA disks, drives appearing as either <em>/dev/hd*</em> or <em class="mono">/dev/sd*</em>, respectively. Use the following command to obtain relevant information for your system:</p>
<p><code>user@ubuntu:~$ df -hl</code></p>
<p>If required, start by configuring <em>postfix</em> to <a href="./2010/01/redirecting-mail-for-the-local-root-user-2/">redirect mail for the local root user</a>.</p>
<p>Get the necessary packages with the following command:</p>
<p><code>user@ubuntu:~$ sudo apt-get install smartmontools bsd-mailx</code></p>
<h4>Configuring smartd</h4>
<p>Edit the file <em>/etc/smartd.conf</em> and comment out any lines beginning with <em>DEVICESCAN</em>.</p>
<p>If you are using a netbook or a laptop, add the following line for the <em>smartd</em> daemon to monitor the device <em>/dev/sda</em>:</p>
<p><code>/dev/sda -a -d ata -n standby -o on -S on -m root -M daily -M test</code></p>
<p>If you are using a desktop or a server, add the following line for the <em>smartd</em> daemon to monitor the device <em>/dev/hda</em>:</p>
<p><code>/dev/hda -a -d ata -n never -o on -S on -s (L/../../7/04|S/../.././02) -m root -M daily -M test</code></p>
<p>See <em>man smartd.conf</em> for more information on how to tailor the operation of <em>smartd</em> to your needs.</p>
<h4>Starting smartd</h4>
<p>Edit the file <em>/etc/default/smartmontools</em> and uncomment the line containing <em>start_smartd=yes</em>.</p>
<p>Restart the <em>smartd</em> daemon with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/smartmontools restart</code></p>
<p>Verify that the local root user has received a test message from the <em>smartd</em> daemon.</p>
<p>From now on, the <em>smartd</em> daemon will monitor the disk and, in the event of impending disk failure, alert the local root user by email.</p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2009/12/monitoring-hard-disks-with-smartmontools-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Linux for the Windows power user</title>
		<link>http://edafe.org/2009/06/desktop-linux-for-the-windows-power-user/</link>
		<comments>http://edafe.org/2009/06/desktop-linux-for-the-windows-power-user/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 08:33:25 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=5652</guid>
		<description><![CDATA[&#8220;As a lifelong Windows user, system builder, ex-gamer, and performance freak, I&#8217;m not drinking anyone&#8217;s Kool-Aid. I just want the most amount of control over my system as possible, and at this point in time, Ubuntu is the best follow-up &#8230; <a href="http://edafe.org/2009/06/desktop-linux-for-the-windows-power-user/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;As a lifelong Windows user, system builder, ex-gamer, and performance freak, I&rsquo;m not drinking anyone&rsquo;s Kool-Aid. I just want the most amount of control over my system as possible, and at this point in time, Ubuntu is the best follow-up to Windows XP.&rdquo;  Adam Overa walks the Windows user through the Ubuntu installation process from downloading the CD image to finding help online.<br /><a href="http://www.tomshardware.com/reviews/ubuntu-linux-guide,2293.html" target="_blank">www.tomshardware.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2009/06/desktop-linux-for-the-windows-power-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Outlaws 92: New User Special</title>
		<link>http://edafe.org/2009/05/linux-outlaws-92-new-user-special/</link>
		<comments>http://edafe.org/2009/05/linux-outlaws-92-new-user-special/#comments</comments>
		<pubDate>Sat, 23 May 2009 11:08:29 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=5565</guid>
		<description><![CDATA[&#8220;We tell you how to burn and install your first distribution, we try to explain some often used terms as well as some philosophical and political issues and we cover the basic concepts behind the OS.&#8221; Dan and Fab give &#8230; <a href="http://edafe.org/2009/05/linux-outlaws-92-new-user-special/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;We tell you how to burn and install your first distribution, we try to explain some often used terms as well as some philosophical and political issues and we cover the basic concepts behind the OS.&rdquo; Dan and Fab give an introduction to Linux for new users.<br /><a href="http://linuxoutlaws.com/podcast/92" target="_blank">linuxoutlaws.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2009/05/linux-outlaws-92-new-user-special/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What exactly is LaTeX for?</title>
		<link>http://edafe.org/2009/01/what-exactly-is-latex-for/</link>
		<comments>http://edafe.org/2009/01/what-exactly-is-latex-for/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 15:56:06 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lockin]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=4431</guid>
		<description><![CDATA[&#8220;Many people discover LaTeX after years of struggling with wordprocessors and desktop publishing systems, and are amazed to find that TeX has been around for over 25 years and they hadn&#8217;t heard of it.&#8221;Peter Flynn LaTeX is a free document &#8230; <a href="http://edafe.org/2009/01/what-exactly-is-latex-for/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&#8220;Many people discover LaTeX after years of struggling with wordprocessors and desktop publishing systems, and are amazed to find that TeX has been around for over 25 years and they hadn&#8217;t heard of it.&#8221;<br /><em>Peter Flynn</em></p>
<p>LaTeX is a free document preparation system that enables you to create beautifully typeset pages. It implements a set of commands designed to control TeX, the typesetting engine <a href="http://en.wikipedia.org/wiki/Donald_Knuth" target="_blank">developed by Donald E Knuth</a>. LaTeX stores the information about your documents as plain text, thus <a href="http://en.wikipedia.org/wiki/Vendor_lock-in" target="_blank">avoiding the risk of vendor lock-in</a> and ensuring that your documents will still be editable twenty years from now. LaTeX processes the plain text data and, with pdfTeX working in the background, generates PDF output of the highest typographic quality&#8212;perfect for viewing on-screen or printing on paper. LaTeX runs on many platforms and is included as <a href="http://distrowatch.com/" target="_blank">standard with most Linux distributions</a>. Ready-to-run LaTeX systems are also available for Windows and Mac OS X.<br /><a href="http://miktex.org/" target="_blank">miktex.org</a>, <a href="http://tug.org/mactex/" target="_blank">tug.org/mactex</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2009/01/what-exactly-is-latex-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux is for everyone</title>
		<link>http://edafe.org/2008/10/ubuntu-linux-is-for-everyone/</link>
		<comments>http://edafe.org/2008/10/ubuntu-linux-is-for-everyone/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 23:18:28 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[ibex]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wubi]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=4446</guid>
		<description><![CDATA[Ubuntu is a relatively new flavour of Linux. Since the release of &#8216;Warty Warthog&#8217; in October 2004, it has become the most popular Linux distribution worldwide. Similar to its parent, Debian GNU/Linux, Ubuntu is based entirely on free software. It &#8230; <a href="http://edafe.org/2008/10/ubuntu-linux-is-for-everyone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ubuntu is a relatively new flavour of Linux. <a href="https://lists.ubuntu.com/archives/ubuntu-announce/2004-October/000003.html" target="_blank">Since the release of &#8216;Warty Warthog&#8217;</a> in October 2004, it has become the most popular Linux distribution worldwide. Similar to its parent, Debian GNU/Linux, Ubuntu is based entirely on free software. It inherits outstanding package management and provides one-click access to thousands of downloadable applications.<br />Ubuntu can be installed as an <a href="http://wubi-installer.org/" target="_blank">application inside an existing Windows installation</a>. This provides new users with a great opportunity to try Ubuntu at no risk to their existing setup. Ubuntu 8.10 (Intrepid Ibex) is the latest version and available for download from today.<br /><a href="http://www.ubuntu.com/" target="_blank">www.unbuntu.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2008/10/ubuntu-linux-is-for-everyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Outlaws</title>
		<link>http://edafe.org/2008/10/linux-outlaws/</link>
		<comments>http://edafe.org/2008/10/linux-outlaws/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 00:54:11 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=3723</guid>
		<description><![CDATA[&#8220;Linux Outlaws is a podcast about Linux and free and open source software. We are normal users like yourself rather than part of the in-crowd of community leaders and hardcore kernel hackers.&#8221; Dan Lynch and Fabian Scherschel present this weekly &#8230; <a href="http://edafe.org/2008/10/linux-outlaws/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Linux Outlaws is a podcast about Linux and free and open source software. We are normal users like yourself rather than part of the in-crowd of community leaders and hardcore kernel hackers.&rdquo; Dan Lynch and Fabian Scherschel present this weekly podcast for current and future users of the Linux operating system.<br /><a href="http://linuxoutlaws.com/" target="_blank">linuxoutlaws.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2008/10/linux-outlaws/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switch to Ubuntu Linux not Apple Mac OS</title>
		<link>http://edafe.org/2008/10/switch-to-ubuntu-linux-not-apple-mac-os/</link>
		<comments>http://edafe.org/2008/10/switch-to-ubuntu-linux-not-apple-mac-os/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 21:20:16 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=3591</guid>
		<description><![CDATA[&#8220;Umpteen number of reports have been published telling people why they should consider switching to the Mac OS now that Vista has failed.&#8221; Prosenjit Bhattacharyya suggests Ubuntu as another alternative.prosenjit23.wordpress.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Umpteen number of reports have been published telling people why they should consider switching to the Mac OS now that Vista has failed.&rdquo; Prosenjit Bhattacharyya suggests Ubuntu as another alternative.<br /><a href="http://prosenjit23.wordpress.com/2008/10/17/switch-to-ubuntu-linux-not-apple-mac-os/" target="_blank">prosenjit23.wordpress.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2008/10/switch-to-ubuntu-linux-not-apple-mac-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hardy Heron makes Linux worth another look</title>
		<link>http://edafe.org/2008/05/hardy-heron-makes-linux-worth-another-look/</link>
		<comments>http://edafe.org/2008/05/hardy-heron-makes-linux-worth-another-look/#comments</comments>
		<pubDate>Wed, 07 May 2008 21:59:27 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lts]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1173</guid>
		<description><![CDATA[&#8220;If you&#8217;ve flirted with the idea of switching your desktop operating system to Linux but never took the leap, the time is now.&#8221; Kevin Purdy highlights key features of the latest Ubuntu Long Term Support (LTS) release.lifehacker.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;If you&rsquo;ve flirted with the idea of switching your desktop operating system to Linux but never took the leap, the time is now.&rdquo; Kevin Purdy highlights key features of the latest Ubuntu Long Term Support (LTS) release.<br /><a href="http://lifehacker.com/383769/hardy-heron-makes-linux-worth-another-look" target="_blank">lifehacker.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2008/05/hardy-heron-makes-linux-worth-another-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing VMware tools for a Ubuntu guest</title>
		<link>http://edafe.org/2007/02/installing-vmware-tools-for-a-ubuntu-guest/</link>
		<comments>http://edafe.org/2007/02/installing-vmware-tools-for-a-ubuntu-guest/#comments</comments>
		<pubDate>Tue, 27 Feb 2007 15:18:12 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1207</guid>
		<description><![CDATA[VMware Tools is a suite of utilities that enhances the performance of a virtual machine&#8217;s guest operating system. Begin by setting up a new virtual machine and installing Ubuntu 6.06 LTS as the guest operating system. Start the virtual machine &#8230; <a href="http://edafe.org/2007/02/installing-vmware-tools-for-a-ubuntu-guest/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>VMware Tools is a suite of utilities that enhances the performance of a virtual machine&rsquo;s guest operating system.</p>
<p>Begin by <a href="http://www.vmware.com/support/ws55/doc/ws_newguest_setup_simple_steps.html" target="_blank">setting up a new virtual machine</a> and installing Ubuntu 6.06 LTS as the guest operating system. Start the virtual machine and log in as a user belonging to the admin group. You are now ready to install VMware Tools.</p>
<p>Get the necessary packages with the following command:</p>
<p><code>user@ubuntu:~$ sudo apt-get install build-essential linux-headers-`uname -r`</code></p>
<p>Become root and create a symbolic link with the following commands:</p>
<p><code>user@ubuntu:~$ sudo su<br />root@ubuntu:/home/user# ln -s /usr/src/linux-headers-`uname -r` /usr/src/linux</code></p>
<p>On the host, select <span>Virtual Machine &gt; Install VMware Tools&hellip;</span> from the VMware Workstation menu.</p>
<p>After the guest has mounted the VMware Tools installation virtual CD, change the active directory and copy the VMware Tools archive with the following commands:</p>
<p><code>root@ubuntu:/home/user# cd /root/<br />root@ubuntu:~# cp /media/cdrom/VMwareTools-7.6.3-87978.tar.gz /root/</code></p>
<p>Extract the contents of the archive and then change the active directory with the following commands:</p>
<p><code>root@ubuntu:~# tar -zxvf VMwareTools-7.6.3-87978.tar.gz<br />root@ubuntu:~# cd vmware-tools-distrib/</code></p>
<p>Invoke the install script with the following command, choose to install the binary files in /usr/local/bin and and set your desired screen resolution:</p>
<p><code>root@ubuntu:~/vmware-tools-distrib# ./vmware-install.pl</code></p>
<p>Restart your virtual machine.</p>
<p><a href="http://www.townx.org/blog/elliot/installing_dapper_as_a_guest_operating_system_on_vmware" target="_blank">www.townx.org</a>, <a href="http://blogs.tech-recipes.com/johnny/2006/09/05/installing-vmware-tools-for-ubuntu-linux/" target="_blank">www.tech-recipes.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2007/02/installing-vmware-tools-for-a-ubuntu-guest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time synchronisation with NTP</title>
		<link>http://edafe.org/2006/12/time-synchronisation-with-ntp/</link>
		<comments>http://edafe.org/2006/12/time-synchronisation-with-ntp/#comments</comments>
		<pubDate>Sat, 30 Dec 2006 12:24:27 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ntp]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1211</guid>
		<description><![CDATA[The NTP protocol allows you to synchronise the clock of your computer with that of dedicated time servers on the Internet. Get the necessary packages with the following command: user@ubuntu:~$ sudo apt-get install ntp-simple ntpdate Stop the ntpd daemon and &#8230; <a href="http://edafe.org/2006/12/time-synchronisation-with-ntp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The NTP protocol allows you to synchronise the clock of your computer with that of dedicated time servers on the Internet.</p>
<p>Get the necessary packages with the following command:</p>
<p><code>user@ubuntu:~$ sudo apt-get install ntp-simple ntpdate</code></p>
<p>Stop the ntpd daemon and manually synchronise your computer&rsquo;s clock with the following two commands:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/ntp-server stop<br />user@ubuntu:~$ sudo ntpdate pool.ntp.org</code></p>
<p>Modify the file <em class="mono">/etc/ntp.conf</em> to read:</p>
<p><code># You do need to talk to an NTP server or two (or three).<br />#server ntp.your-provider.example<br />#server ntp.ubuntu.com<br />server 0.pool.ntp.org<br />server 1.pool.ntp.org<br />server 2.pool.ntp.org</code></p>
<p>Start the ntpd daemon with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/ntp-server start</code></p>
<p>After about one minute, query the status of the ntpq daemon with the following command:</p>
<p><code>user@ubuntu:~$ sudo ntpq -p</code></p>
<p>You can further increase the accuracy of time synchronisation by using the <a href="http://www.pool.ntp.org/use.html" target="_blank">time servers in your continental or country zone</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/12/time-synchronisation-with-ntp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing a PostScript printer with CUPS and Samba</title>
		<link>http://edafe.org/2006/12/sharing-a-postscript-printer-with-cups-and-samba/</link>
		<comments>http://edafe.org/2006/12/sharing-a-postscript-printer-with-cups-and-samba/#comments</comments>
		<pubDate>Thu, 28 Dec 2006 09:12:21 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1205</guid>
		<description><![CDATA[Using Samba and CUPS, the Common UNIX Printing System, Ubuntu can easily be configured to provide printing services to a heterogeneous network of Windows, Macintosh and Linux clients. Printing with CUPS Get the necessary packages with the following command: user@ubuntu:~$ &#8230; <a href="http://edafe.org/2006/12/sharing-a-postscript-printer-with-cups-and-samba/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using Samba and CUPS, the Common UNIX Printing System, Ubuntu can easily be configured to provide printing services to a heterogeneous network of Windows, Macintosh and Linux clients.</p>
<h4>Printing with CUPS</h4>
<p>Get the necessary packages with the following command:</p>
<p><code>user@ubuntu:~$ sudo apt-get install cupsys foomatic-filters-ppds</code></p>
<p>Add the user <em>cupsys</em> to the group <em>shadow</em>:</p>
<p><code>user@ubuntu:~$ sudo adduser cupsys shadow</code></p>
<p>Get the file <em>cupsd.conf</em> and move it to <em>/etc/cups/</em>:</p>
<p><code>user@ubuntu:~# sudo wget &quot;<a href="http://edafe.org/wp-content/uploads/2006/12/cupsd.conf" target="_blank">http://edafe.org/ubuntu/cups/cupsd.conf</a>&quot;<br />user@ubuntu:~# sudo mv cupsd.conf /etc/cups/</code></p>
<p>The downloaded file contains the following changes from the Ubuntu default configuration:</p>
<p><code># Default authentication type, when authentication is required...<br />DefaultEncryption IfRequested<br /># Restrict access to the admin pages...<br />&lt;Location /admin&gt;<br />&emsp;&emsp;Allow @LOCAL<br />&lt;/Location&gt;</code></p>
<p>Setting these options enables members of the admin group to modify the configuration of the CUPS server from clients sharing the same local network.</p>
<p>Modify the file <em>/etc/cups/cups.d/ports.conf</em> to read:</p>
<p><code>Port 631<br />Listen localhost<br />Listen 192.168.0.123<br />Listen /var/run/cups/cups.sock</code></p>
<p>For <em>192.168.0.123</em>, substitute the IP address of your machine on the local network.</p>
<p>Restart <em>cupsd</em> with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/cupsys restart</code></p>
<p>Use a web browser to access <a href="http://localhost:631/admin" target="_blank">http://localhost:631/admin</a> (or http://192.168.0.123:631/admin from another machine on your local network). Go to <span>Administration &gt; Add Printer</span> and begin to set up your printer. When prompted by the system, authenticate yourself as a member of the admin group. If necessary, obtain the correct <a href="http://openprinting.org/printer_list.cgi" target="_blank">PostScript Printer Description (PPD) file</a> for your printer model. Print a test page to confirm that your printer is working properly with CUPS.</p>
<h4>Making Printers Available over the Network</h4>
<p><a href="./?p=1194">Install and configure a Samba server</a> and then add the following options to <em>/etc/samba/smb.conf</em>:</p>
<p><code>[global]<br />&emsp;&emsp;printing = cups<br />&emsp;&emsp;load printers = Yes<br />&emsp;&emsp;printcap name = cups<br />[printers]<br />&emsp;&emsp;comment = All Printers<br />&emsp;&emsp;printable = Yes<br />&emsp;&emsp;path = /var/spool/samba/print<br />&emsp;&emsp;browseable = No<br />&emsp;&emsp;guest ok = Yes<br />&emsp;&emsp;read only = Yes</code></p>
<p>Create the directory <em>/var/spool/samba/print</em> and set its permissions with the following two commands:</p>
<p><code>user@ubuntu:~$ sudo mkdir -p /var/spool/samba/print<br />user@ubuntu:~$ sudo chmod 1777 /var/spool/samba/print</code></p>
<p>Restart the Samba server with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/samba restart</code></p>
<p>Set your Samba clients to use a printer driver that outputs generic PostScript. Use the the Apple LaserWriter driver on Windows, the Generic PostScript driver on Mac OS X or the Raw Standard driver on Ubuntu.<br /><a href="http://wiki.ubuntuusers.de/CUPS">wiki.ubuntuusers.de</a>, <a href="http://www.samba.org/samba/docs/man/Samba-HOWTO-Collection/CUPS-printing.html#id363890" target="_blank">www.samba.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/12/sharing-a-postscript-printer-with-cups-and-samba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring hard disks with smartmontools</title>
		<link>http://edafe.org/2006/12/monitoring-hard-disks-with-smartmontools/</link>
		<comments>http://edafe.org/2006/12/monitoring-hard-disks-with-smartmontools/#comments</comments>
		<pubDate>Sun, 17 Dec 2006 14:57:46 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[smart]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unr]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1202</guid>
		<description><![CDATA[This post has been updated.]]></description>
			<content:encoded><![CDATA[<p>This post <a href="./2009/12/monitoring-hard-disks-with-smartmontools-2/">has been updated</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/12/monitoring-hard-disks-with-smartmontools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allowing other users to run sudo</title>
		<link>http://edafe.org/2006/12/allowing-other-users-to-run-sudo/</link>
		<comments>http://edafe.org/2006/12/allowing-other-users-to-run-sudo/#comments</comments>
		<pubDate>Tue, 05 Dec 2006 23:29:50 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1217</guid>
		<description><![CDATA[user@ubuntu:~$ sudo adduser username admin]]></description>
			<content:encoded><![CDATA[<p><code>user@ubuntu:~$ sudo adduser username admin</code></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/12/allowing-other-users-to-run-sudo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing configuration files with nano</title>
		<link>http://edafe.org/2006/12/editing-configuration-files-with-nano/</link>
		<comments>http://edafe.org/2006/12/editing-configuration-files-with-nano/#comments</comments>
		<pubDate>Sun, 03 Dec 2006 11:11:39 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1185</guid>
		<description><![CDATA[There are many different tools that you can use to edit configuration files. Because of its simplicity, I personally like to use Nano: user@ubuntu:~$ sudo nano /path/to/the/file You can change the default settings for nano by editing its configuration file. &#8230; <a href="http://edafe.org/2006/12/editing-configuration-files-with-nano/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are many different tools that you can use to edit configuration files. Because of its simplicity, I personally like to use Nano:</p>
<p><code>user@ubuntu:~$ sudo nano /path/to/the/file</code></p>
<p>You can change the default settings for nano by editing its configuration file. For example, to stop nano from wrapping text simply make the following changes to <em>/etc/nanorc</em>:</p>
<p><code>## Don't wrap text at all.<br />set nowrap</code></p>
<p><a href="http://www.nano-editor.org/" target="_blank">www.nano-editor.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/12/editing-configuration-files-with-nano/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a software RAID-1 array</title>
		<link>http://edafe.org/2006/11/creating-a-software-raid-1-array/</link>
		<comments>http://edafe.org/2006/11/creating-a-software-raid-1-array/#comments</comments>
		<pubDate>Wed, 29 Nov 2006 21:52:04 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1200</guid>
		<description><![CDATA[RAID stands for Redundant Array of Inexpensive Disks and refers to the use of multiple hard disks to share or replicate data between drives. For RAID-1, you need two partitions of identical size on two separate disks which are not &#8230; <a href="http://edafe.org/2006/11/creating-a-software-raid-1-array/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>RAID stands for Redundant Array of Inexpensive Disks and refers to the <a href="http://en.wikipedia.org/wiki/Redundant_array_of_independent_disks" target="_blank">use of multiple hard disks to share or replicate data between drives</a>.</p>
<p>For RAID-1, you need two partitions of identical size on two separate disks which are not connected to the same IDE/Parallel ATA-bus.</p>
<p>Use <em>cfdisk</em> to create the two partitions <em>/dev/hdb1</em> and <em>/dev/hdc1</em>. Set their respective types to <em>FD</em> and do not set their bootable flags. Create the RAID-1 array with the following command:</p>
<p><code>user@ubuntu:~$ sudo mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[bc]1</code></p>
<p>Create a filesystem on the RAID device with the following command:</p>
<p><code>user@ubuntu:~$ sudo mke2fs -j /dev/md0</code></p>
<p>Create an empty directory <em>/raid</em> as a mount point and add the following line to <em>/etc/fstab</em>:</p>
<p><code>/dev/md0 /raid ext3 defaults 0 2</code></p>
<p>Mount your RAID array and check its status with the following commands:</p>
<p><code>user@ubuntu:~$ sudo mount /raid<br />user@ubuntu:~$ sudo mdadm --detail /dev/md0</code></p>
<h3>Monitoring the RAID Array</h3>
<p>If required, start by configuring Postfix to <a href="./?p=1188">redirect mail for the local root user</a>.</p>
<p>Obtain the UUID of your RAID device with the following command:</p>
<p><code>user@ubuntu:~$ sudo mdadm -D /dev/md0</code></p>
<p>Create the file <em>/etc/mdadm/mdadm.conf</em> and add the following three lines, replacing <em>47d1eee2:2cbfr68v:34&#215;75168:142ef912</em> with the UUID of your RAID:</p>
<p><code>DEVICE /dev/hdb1 /dev/hdc1<br />ARRAY /dev/md0 level=raid1 num-devices=2 UUID=47d1eee2:2cbfr68v:34x75168:142ef912<br />MAILADDR root </code></p>
<p>Edit the file <em>/etc/init.d/mdadm</em> and append <em>&#8211;test</em> to the line beginning with <em>start-stop-daemon -S</em>:</p>
<p><code>start-stop-daemon -S -q -p $PIDFILE -x $MDADM -- -F -i $PIDFILE -m $MAIL_TO -f -s --test</code></p>
<p>Restart the mdadm daemon with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/mdadm restart</code></p>
<p>Verify that the local root user has received a test message from the mdadm daemon.</p>
<p>From now on, the mdadm daemon will monitor the integrity of the RAID array and, in the event of any problems, alert the local root user by email.<br /><a href="http://users.piuha.net/martti/comp/ubuntu/en/raid.html" target="_blank">users.piuha.net/martti</a>, <a href="http://www.tldp.net/HOWTO/html_single/Software-RAID-HOWTO/" target="_blank">www.tldp.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/11/creating-a-software-raid-1-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring a static IP address</title>
		<link>http://edafe.org/2006/11/configuring-a-static-ip-address/</link>
		<comments>http://edafe.org/2006/11/configuring-a-static-ip-address/#comments</comments>
		<pubDate>Sun, 26 Nov 2006 23:28:33 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[tcpip]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1215</guid>
		<description><![CDATA[Edit the file /etc/network/interfaces to contain the following entries: # The primary network interfaceauto eth0iface eth0 inet static&#8195;&#8195;address 192.168.0.20&#8195;&#8195;netmask 255.255.255.0&#8195;&#8195;broadcast 192.168.0.255&#8195;&#8195;gateway 192.168.0.1 Reconfigure the network interfaces with the following command: user@ubuntu:~$ sudo /etc/init.d/networking restart www.ubuntuforums.org]]></description>
			<content:encoded><![CDATA[<p>Edit the file <em>/etc/network/interfaces</em> to contain the following entries:</p>
<p><code># The primary network interface<br />auto eth0<br />iface eth0 inet static<br />&emsp;&emsp;address 192.168.0.20<br />&emsp;&emsp;netmask 255.255.255.0<br />&emsp;&emsp;broadcast 192.168.0.255<br />&emsp;&emsp;gateway 192.168.0.1</code></p>
<p>Reconfigure the network interfaces with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/networking restart</code></p>
<p><a href="http://www.ubuntuforums.org/showthread.php?t=66500" target="_blank">www.ubuntuforums.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/11/configuring-a-static-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling the root account</title>
		<link>http://edafe.org/2006/11/enabling-the-root-account/</link>
		<comments>http://edafe.org/2006/11/enabling-the-root-account/#comments</comments>
		<pubDate>Sun, 19 Nov 2006 23:26:05 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1213</guid>
		<description><![CDATA[Consider the implications of enabling the root account, and then proceed with: user@ubuntu:~$ sudo passwd root To disable the root account again, use the following command: user@ubuntu:~$ sudo passwd -l root]]></description>
			<content:encoded><![CDATA[<p><a href="https://help.ubuntu.com/community/RootSudo" target="_blank">Consider the implications of enabling the root account</a>, and then proceed with:</p>
<p><code>user@ubuntu:~$ sudo passwd root</code></p>
<p>To disable the root account again, use the following command:</p>
<p><code>user@ubuntu:~$ sudo passwd -l root</code></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/11/enabling-the-root-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samba as a file server</title>
		<link>http://edafe.org/2006/11/samba-as-a-file-server/</link>
		<comments>http://edafe.org/2006/11/samba-as-a-file-server/#comments</comments>
		<pubDate>Thu, 16 Nov 2006 20:41:47 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1194</guid>
		<description><![CDATA[Samba enables Linux to speak the Server Message Block (SMB) protocol, which is also used by Windows and Mac OS X to exchange data over a network. Get the necessary packages with the following command: user@ubuntu:~$ sudo apt-get install swat &#8230; <a href="http://edafe.org/2006/11/samba-as-a-file-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Samba <a href="http://www.itweek.co.uk/itweek/news/2085206/samba-beats-windows" target="_blank">enables Linux to speak the Server Message Block (SMB) protocol</a>, which is also used by Windows and Mac OS X to exchange data over a network.</p>
<p>Get the necessary packages with the following command:</p>
<p><code>user@ubuntu:~$ sudo apt-get install swat netkit-inetd</code></p>
<p>For an initial configuration, edit the file <em>/etc/samba/smb.conf</em> to contain the following entries:</p>
<p><code>[global]<br />&emsp;&emsp;workgroup = SAMBA<br />[homes]<br />&emsp;&emsp;comment = Home Directories<br />&emsp;&emsp;valid users = %S<br />&emsp;&emsp;read only = No<br />&emsp;&emsp;create mask = 0640<br />&emsp;&emsp;directory mask = 0750<br />&emsp;&emsp;browseable = No</code></p>
<p>Continue by adding local users to the <em>smbpasswd</em> file:</p>
<p><code>user@ubuntu:~$ sudo smbpasswd -a user</code></p>
<p>Restart the Samba server with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/samba restart</code></p>
<p>The server ubuntu now joins the SAMBA workgroup, giving users who have been added to the <em>smbpasswd</em> file access to their respective home directories.</p>
<h4>Using SWAT</h4>
<p>Using the Samba Web Administration Tool (SWAT), you can access help, obtain status information and change the configuration of your Samba server. Use a web browser to access <a href="http://localhost:901/" target="_blank">http://localhost:901/</a> and <a href="./?p=1213">log in as the local root user</a>.<br />In principle, SWAT can also be reached from other machines on your local network. However, such connections are vulnerable to password sniffing because of the clear text protocol that SWAT uses to authenticate users.<br /><a href="http://www.samba.org/samba/docs/using_samba/toc.html" target="_blank">www.samba.org</a>, <a href="http://copia.ogbuji.net/blog/2006-01-26/The_madnes" target="_blank">copia.ogbuji.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/11/samba-as-a-file-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A brief look at Slackware 11.0</title>
		<link>http://edafe.org/2006/11/a-brief-look-at-slackware-110/</link>
		<comments>http://edafe.org/2006/11/a-brief-look-at-slackware-110/#comments</comments>
		<pubDate>Wed, 01 Nov 2006 21:35:15 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[slackware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=825</guid>
		<description><![CDATA[&#8220;Slackware is one of the oldest Linux distributions out there. And over the years, it has consistently kept pace with the changes.&#8221;linuxhelp.blogspot.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Slackware is one of the oldest Linux distributions out there. And over the years, it has consistently kept pace with the changes.&rdquo;<br /><a href="http://linuxhelp.blogspot.com/2006/10/brief-look-at-slackware-110.html" target="_blank">linuxhelp.blogspot.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/11/a-brief-look-at-slackware-110/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing default permissions</title>
		<link>http://edafe.org/2006/10/changing-default-permissions/</link>
		<comments>http://edafe.org/2006/10/changing-default-permissions/#comments</comments>
		<pubDate>Thu, 12 Oct 2006 10:31:07 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[permission]]></category>
		<category><![CDATA[rights]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1219</guid>
		<description><![CDATA[Change the default permissions for your installation by editing the value for umask in /etc/profiles and /etc/login.defs.lists.ubuntu.com]]></description>
			<content:encoded><![CDATA[<p>Change the default permissions for your installation by editing the value for umask in <em>/etc/profiles</em> and <em>/etc/login.defs</em>.<br /><a href="https://lists.ubuntu.com/archives/kubuntu-users/2006-May/005504.html" target="_blank">lists.ubuntu.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/10/changing-default-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the time zone</title>
		<link>http://edafe.org/2006/10/setting-the-time-zone/</link>
		<comments>http://edafe.org/2006/10/setting-the-time-zone/#comments</comments>
		<pubDate>Tue, 10 Oct 2006 13:20:33 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1209</guid>
		<description><![CDATA[Set the local time zone with the following command: user@ubuntu:~$ sudo tzconfig www.debian-administration.org]]></description>
			<content:encoded><![CDATA[<p>Set the local time zone with the following command:</p>
<p><code>user@ubuntu:~$ sudo tzconfig</code></p>
<p><a href="http://www.debian-administration.org/articles/213" target="_blank">www.debian-administration.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/10/setting-the-time-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirecting mail for the local root user</title>
		<link>http://edafe.org/2006/09/redirecting-mail-for-the-local-root-user/</link>
		<comments>http://edafe.org/2006/09/redirecting-mail-for-the-local-root-user/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 22:18:59 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unr]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1188</guid>
		<description><![CDATA[This post has been updated.]]></description>
			<content:encoded><![CDATA[<p>This post <a href="./2010/01/redirecting-mail-for-the-local-root-user-2/">has been updated</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/09/redirecting-mail-for-the-local-root-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on moving from Debian to Ubuntu Server</title>
		<link>http://edafe.org/2006/09/thoughts-on-moving-from-debian-to-ubuntu-server/</link>
		<comments>http://edafe.org/2006/09/thoughts-on-moving-from-debian-to-ubuntu-server/#comments</comments>
		<pubDate>Tue, 26 Sep 2006 22:03:45 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1179</guid>
		<description><![CDATA[&#8220;If Canonical keeps its update schedule and support commitments along with the legendary Debian robustness, we may have a keeper.&#8221; Staff at Advosys Consulting are considering Ubuntu for entirely practical reasons.www.advosys.ca]]></description>
			<content:encoded><![CDATA[<p>&ldquo;If Canonical keeps its update schedule and support commitments along with the legendary Debian robustness, we may have a keeper.&rdquo; Staff at Advosys Consulting are considering Ubuntu for entirely practical reasons.<br /><a href="http://www.advosys.ca/viewpoints/2006/08/debian-to-ubuntu" target="_blank">www.advosys.ca</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/09/thoughts-on-moving-from-debian-to-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Public/private key authentication with SSH</title>
		<link>http://edafe.org/2006/09/publicprivate-key-authentication-with-ssh/</link>
		<comments>http://edafe.org/2006/09/publicprivate-key-authentication-with-ssh/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 19:31:42 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[cryptography]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unr]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1190</guid>
		<description><![CDATA[SSH is a protocol that enables secure logins to your computer over a network. SSH supports the use of public/private key pairs for user authentication. Private keys are kept locally, while public keys are stored on the remote machine. On &#8230; <a href="http://edafe.org/2006/09/publicprivate-key-authentication-with-ssh/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>SSH is a protocol that enables secure logins to your computer over a network. SSH supports the use of <a href="http://en.wikipedia.org/wiki/Public-key_cryptography" target="_blank">public/private key pairs for user authentication</a>. Private keys are kept locally, while public keys are stored on the remote machine.</p>
<h4>On the Local Machine</h4>
<p>Use the command <em>ssh-keygen -t dsa</em> to generate a key pair for the local user. Use an appropriate passphrase to secure your private key (<a href="http://www.snailbook.com/faq/no-passphrase.auto.html#no-biscuit" target="_blank">don&rsquo;t be tempted to use an empty passphrase</a>).<br />Set the permissions for the private key file with the following command:</p>
<p><code>user@ubuntu:~$ chmod 600 ~/.ssh/id_dsa</code></p>
<h4>On the Remote Machine</h4>
<p>Get the necessary packages with the following command:</p>
<p><code>user@ubuntu:~$ sudo apt-get install ssh</code></p>
<p>Copy the public key file <em>~/.ssh/id_dsa.pub</em> from the local to the remote machine.</p>
<p>On the remote machine, move and rename the file with the following command:</p>
<p><code>user@ubuntu:~$ mv id_dsa.pub .ssh/authorized_keys2</code></p>
<p>Set the permissions for the file with the following command:</p>
<p><code>user@ubuntu:~$ chmod 600 ~/.ssh/authorized_keys2</code></p>
<p>Add the user <em>user</em> to the group ssh:</p>
<p><code>user@ubuntu:~$ sudo adduser user ssh</code></p>
<p>Get the file <em>sshd_config</em> and move it to <em>/etc/ssh/</em>:</p>
<p><code>user@ubuntu:~# sudo wget &quot;<a href="http://edafe.org/wp-content/uploads/2006/09/sshd_config" target="_blank">http://edafe.org/wp-content/uploads/2006/09/sshd_config</a>&quot;<br />user@ubuntu:~# sudo mv sshd_config /etc/ssh/</code></p>
<p>The downloaded file contains the following changes from the Ubuntu default configuration:</p>
<p><code>LogLevel VERBOSE</p>
<p>AllowGroups ssh<br />
LoginGraceTime 20<br />
PermitRootLogin no<br />
MaxAuthTries 1</p>
<p>RSAAuthentication no</p>
<p>PasswordAuthentication no</p>
<p>X11 Forwarding no<br />
TCPKeepAlive yes<br />
ClientAliveInterval 15<br />
ClientAliveCountMax 3</p>
<p>MaxStartups 3</p>
<p>UsePAM no</code></p>
<p>Setting these options makes root logins impossible. Only users belonging to the group ssh may establish a connection. Access to the remote machine is strictly tied to the private key and the passphrase used to encrypt it.</p>
<p>Next, restart the SSH server on the remote machine with the following command:</p>
<p><code>user@ubuntu:~$ sudo /etc/init.d/ssh restart</code></p>
<p>You should now be able to log into the remote machine using the private key stored on the local machine:</p>
<p><code>user@ubuntu:~$ ssh remote.machine<br />Enter passphrase for key '/home/user/.ssh/id_dsa':</code></p>
<p>The book <em><a href="http://oreilly.com/catalog/9780596008956/" target="_blank">SSH The Secure Shell by Daniel Barrett, Richard Silverman and Robert Byrnes</a></em> is useful as a reference text and has information on other clever stuff you can do with SSH.<br /><a href="http://www-128.ibm.com/developerworks/linux/library/l-keyc.html" target="_blank">www.ibm.com/developerworks/linux/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/09/publicprivate-key-authentication-with-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash guide for beginners</title>
		<link>http://edafe.org/2006/08/bash-guide-for-beginners/</link>
		<comments>http://edafe.org/2006/08/bash-guide-for-beginners/#comments</comments>
		<pubDate>Tue, 29 Aug 2006 17:46:24 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=771</guid>
		<description><![CDATA[&#8220;This is a practical guide which tries to give real-life instead of theoretical examples.&#8221; By making her book available for online reading, Machtelt Garrels introduces you to the wonders of task automation under Linux.www.tldp.org]]></description>
			<content:encoded><![CDATA[<p>&ldquo;This is a practical guide which tries to give real-life instead of theoretical examples.&rdquo; By making her book available for online reading, Machtelt Garrels introduces you to the wonders of task automation under Linux.<br /><a href="http://www.tldp.org/LDP/Bash-Beginners-Guide/html/" target="_blank">www.tldp.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/08/bash-guide-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Ubuntu</title>
		<link>http://edafe.org/2006/08/open-source-ubuntu/</link>
		<comments>http://edafe.org/2006/08/open-source-ubuntu/#comments</comments>
		<pubDate>Sat, 26 Aug 2006 22:02:06 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1177</guid>
		<description><![CDATA[&#8220;Ubuntu has been the most popular distro of Linux since 2005, and since I made the switch last year those tearful evenings in front of the computer screen have become a distant memory.&#8221; Becky Hogges describes how Ubuntu has put &#8230; <a href="http://edafe.org/2006/08/open-source-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Ubuntu has been the most popular distro of Linux since 2005, and since I made the switch last year those tearful evenings in front of the computer screen have become a distant memory.&rdquo; Becky Hogges describes how Ubuntu has put a smile back on her face.<br /><a href="http://www.opendemocracy.net/media/ubuntu_3574.jsp" target="_blank">www.opendemocracy.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/08/open-source-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU Bash reference manual</title>
		<link>http://edafe.org/2006/07/gnu-bash-reference-manual/</link>
		<comments>http://edafe.org/2006/07/gnu-bash-reference-manual/#comments</comments>
		<pubDate>Wed, 19 Jul 2006 22:59:24 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=776</guid>
		<description><![CDATA[&#8220;This manual is the definitive reference for GNU Bash, the standard GNU command-line interpreter. It covers the current major release of Bash (2.x).&#8221; Written by Chet Ramey and Brian Fox, the original developers of GNU Bash, the book is also &#8230; <a href="http://edafe.org/2006/07/gnu-bash-reference-manual/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;This manual is the definitive reference for GNU Bash, the standard GNU command-line interpreter. It covers the current major release of Bash (2.x).&rdquo; Written by Chet Ramey and Brian Fox, the original developers of GNU Bash, the book is also available for online reading.<br /><a href="http://www.network-theory.co.uk/docs/bashref/" target="_blank">www.network-theory.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/07/gnu-bash-reference-manual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Dapper: ready for the long haul</title>
		<link>http://edafe.org/2006/07/ubuntu-dapper-ready-for-the-long-haul/</link>
		<comments>http://edafe.org/2006/07/ubuntu-dapper-ready-for-the-long-haul/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 22:00:44 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lts]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1175</guid>
		<description><![CDATA[&#8220;Overall, I&#8217;ve found Ubuntu 6.06 LTS to be a solid operating system. It&#8217;s easy to use, has a great selection of software available, and generally &#8216;just works&#8217;.&#8221; Joe Brockmeier reviews Ubuntu 6.06 Long Term Support.www.linux.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Overall, I&rsquo;ve found Ubuntu 6.06 LTS to be a solid operating system. It&rsquo;s easy to use, has a great selection of software available, and generally &lsquo;just works&rsquo;.&rdquo; Joe Brockmeier reviews Ubuntu 6.06 Long Term Support.<br /><a href="http://www.linux.com/articles/54939" target="_blank">www.linux.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/07/ubuntu-dapper-ready-for-the-long-haul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OOo off the wall</title>
		<link>http://edafe.org/2006/06/ooo-off-the-wall/</link>
		<comments>http://edafe.org/2006/06/ooo-off-the-wall/#comments</comments>
		<pubDate>Tue, 27 Jun 2006 19:18:08 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[openoffice]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=2939</guid>
		<description><![CDATA[OpenOffice.org is a multi-platform application. These articles, written by Bruce Byfield for Linux Journal, are also applicable to OpenOffice.org installations on other platforms. Setting up page styles in OOo Writer, Bullet proof templates, Style is everything, right?, Fonts of wisdom, &#8230; <a href="http://edafe.org/2006/06/ooo-off-the-wall/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OpenOffice.org is a multi-platform application. These articles, <a href="http://www.linuxjournal.com/googlesearch?cx=014164207538395607518%3Aw82fvojcgcu&#038;cof=FORID%3A11&#038;as_q=openoffice.org" target="_blank">written by Bruce Byfield for Linux Journal</a>, are also applicable to OpenOffice.org installations on other platforms.</p>
<p><a href="http://www.linuxjournal.com/article/7203" target="_blank">Setting up page styles in OOo Writer</a>, <a href="http://www.linuxjournal.com/article/7447" target="_blank">Bullet proof templates</a>, <a href="http://www.linuxjournal.com/article/7488" target="_blank">Style is everything, right?</a>, <a href="http://www.linuxjournal.com/article/7535" target="_blank">Fonts of wisdom</a>, <a href="http://www.linuxjournal.com/article/7576" target="_blank">Building characters</a>, <a href="http://www.linuxjournal.com/article/7599" target="_blank">Shooting the sun</a>, <a href="http://www.linuxjournal.com/article/7634" target="_blank">Paragraph styles, Part II</a>, <a href="http://www.linuxjournal.com/article/7659" target="_blank">It&rsquo;s numbering, but not as we know it</a>, <a href="http://www.linuxjournal.com/article/7733" target="_blank">Getting in the frame</a>, <a href="http://www.linuxjournal.com/article/7759" target="_blank">The outlining and the ecstasy</a>, <a href="http://www.linuxjournal.com/article/7802" target="_blank">Macros and add-ons</a>, <a href="http://www.linuxjournal.com/article/7850" target="_blank">Floating windows</a>, <a href="http://www.linuxjournal.com/article/7915" target="_blank">My objects all sublime</a>, <a href="http://www.linuxjournal.com/article/8012" target="_blank">ToCs, indexes and bibliographies in OOo Writer</a>, Fielding questions <a href="http://www.linuxjournal.com/article/8071" target="_blank">Part 1</a> <a href="http://www.linuxjournal.com/article/8112" target="_blank">Part 2</a> <a href="http://www.linuxjournal.com/article/8154" target="_blank">Part 3</a> <a href="http://www.linuxjournal.com/article/8238" target="_blank">Part 4</a>, Tabling the notion <a href="http://www.linuxjournal.com/article/8298" target="_blank">Part 1</a> <a href="http://www.linuxjournal.com/article/8336" target="_blank">Part 2</a>, <a href="http://www.linuxjournal.com/article/8492" target="_blank">Recovering hidden treasures</a>, <a href="http://www.linuxjournal.com/article/8575" target="_blank">Back to school with bibliographies</a>, <a href="http://www.linuxjournal.com/article/8646" target="_blank">Adding AutoText to your work flow</a>, <a href="http://www.linuxjournal.com/article/8688" target="_blank">Domesticating Autocorrect</a>, <a href="http://www.linuxjournal.com/article/8735" target="_blank">Master documents</a>, <a href="http://www.linuxjournal.com/article/8791" target="_blank">Find and replace</a>, <a href="http://www.linuxjournal.com/article/8911" target="_blank">That&rsquo;s your version-document control in OOo Writer</a>, <a href="http://www.linuxjournal.com/node/1005665" target="_blank">Paragraph and page spacing</a>, <a href="http://www.linuxjournal.com/content/automating-creation-slide-shows-openofficeorg" target="_blank">Automating the creation of slide shows</a>, <a href="http://www.linuxjournal.com/content/openofficeorg-impress-using-master-slides" target="_blank">Using master slides</a>, <a href="http://www.linuxjournal.com/content/extensions-openofficeorg-draw" target="_blank">Extensions for OOo Draw</a>, <a href="http://www.linuxjournal.com/content/openofficeorg-template-collections" target="_blank">Template collections</a>, <a href="http://www.linuxjournal.com/content/new-add-ons-openofficeorg-writer" target="_blank">New add-ons for OOo Writer</a>, <a href="http://www.linuxjournal.com/node/1000444" target="_blank">Text flow in OOo Writer</a>, <a href="http://www.linuxjournal.com/node/1005895" target="_blank">Basic arithmetic and statistic functions</a>, <a href="http://www.linuxjournal.com/node/1000428" target="_blank">Creating business cards</a>, <a href="http://www.linuxjournal.com/content/rounding-numbers-openofficeorg-calc" target="_blank">Rounding off numbers</a>, <a href="http://www.linuxjournal.com/node/1000252" target="_blank">Pivot tables by another name</a>, <a href="http://www.linuxjournal.com/content/openofficeorg-extensions-writers-tools" target="_blank">Writer&rsquo;s tools</a>, <a href="http://www.linuxjournal.com/content/extensions-openofficeorg-impress" target="_blank">Extensions for OOo Impress&rsquo;s tools</a>, <a href="http://www.linuxjournal.com/node/1000114" target="_blank">Manipulating lists in OpenOffice.org Calc</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/06/ooo-off-the-wall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filesystem Hierarchy Standard</title>
		<link>http://edafe.org/2006/05/filesystem-hierarchy-standard/</link>
		<comments>http://edafe.org/2006/05/filesystem-hierarchy-standard/#comments</comments>
		<pubDate>Tue, 16 May 2006 09:12:32 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[guideline]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=785</guid>
		<description><![CDATA[The Filesystem Hierarchy Standard (FHS) consists of a set of requirements and guidelines for file and directory placement under UNIX-like operating systems. Use this reference to maintain compliance of your Linux system with the FHS.www.pathname.com]]></description>
			<content:encoded><![CDATA[<p>The Filesystem Hierarchy Standard (FHS) consists of a set of requirements and guidelines for file and directory placement under UNIX-like operating systems. Use this reference to maintain compliance of your Linux system with the FHS.<br /><a href="http://www.pathname.com/fhs/" target="_blank">www.pathname.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/05/filesystem-hierarchy-standard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VDR</title>
		<link>http://edafe.org/2006/01/vdr/</link>
		<comments>http://edafe.org/2006/01/vdr/#comments</comments>
		<pubDate>Sat, 28 Jan 2006 21:25:24 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[dvb]]></category>
		<category><![CDATA[freeview]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[satellite]]></category>
		<category><![CDATA[slackware]]></category>
		<category><![CDATA[terrestial]]></category>
		<category><![CDATA[vdr]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=6199</guid>
		<description><![CDATA[VDR stands for Video Disk Recorder, the outstanding software project by Klaus Schmidinger. VDR turns a PC equipped with suitable hardware into a digital receiver and timer-controlled video disk recorder. Its features include time-shifting and on-disk editing of the recordings. &#8230; <a href="http://edafe.org/2006/01/vdr/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>VDR stands for Video Disk Recorder, the outstanding software project by Klaus Schmidinger. VDR turns a PC equipped with suitable hardware into a digital receiver and timer-controlled video disk recorder. Its features include time-shifting and on-disk editing of the recordings. <a href="http://en.wikipedia.org/wiki/Digital_Video_Broadcasting" target="_blank">Support for the different types of DVB standard</a> is dependent on the hardware employed to receive the broadcast signal(s). This means that, given the right kind of receiver card(s), VDR will work with cable, satellite and terrestial television.<br /><a href="http://www.tvdr.de/" target="_blank">www.tvdr.de</a></p>
<h2>Building the Freeview VDR</h2>
<p>These instructions are intended to help you build a system that will receive both digital terrestial and satellite transmissions. Personally, I use a setup that enables me to watch and record broadcasts on Freeview, the terrestial service here in the United Kingdom, and Astra 19.2&deg; East, a satellite transmitting to the whole of Europe. Some of the <a href="http://edafe.org/frequently-asked-questions/">most frequently asked questions</a> about the Freeview VDR are answered on a separate page.<br />
In addition to an aerial and a satellite dish, you require a PC equipped with a large enough hard drive to store your recordings. Keep in mind that a one hour recording will take up approximately 1.5 GB of disk space.<br />
You also need one DVB-S card of the type TechnoTrend Premium S, one DVB-T card of the type TechnoTrend Budget T and the ATI Remote Wonder remote control. You should also have a working broadband connection accessed from behind a router/firewall.</p>
<h3>Installing Slackware</h3>
<p>Slackware Linux is ideal for the purpose: It is easy to install and very dependable. Download the file <em>slackware-10.2-install-d1.iso</em> <a href="http://www.slackware.com/getslack/" target="_blank">from one of the Slackware mirrors</a> and burn the ISO image to disk. Alternatively, you can help support Slackware and the effort that goes into it by <a href="http://store.slackware.com/cgi-bin/store" target="_blank">ordering your set of CDs from The Slackware Store</a>.</p>
<p>Install Slackware with: a) a swap partition that is equal in size to that of the installed RAM, b) a root partition of 3 GB, and c) a <em>/video</em> partition taking up all of the remaining disk space. Select the software sets <em>a, ap, d, k, l</em> and <em>n</em> for installation. Configure a network interface with access to the internet. Set the system time to synchronise with NTP.<br />
Add the user <em>vdr</em>, with the default group <em>video</em> and a home directrory located at <em>/etc/vdr</em>. Finish by changing the owner and group of <em>/video</em>:</p>
<p><code>darkstar:~# chown -R vdr.video /video/</code></p>
<h3>Installing the Drivers</h3>
<p>The Linux driver for the DVB-S card requires that the file <em>Sc_main.mc</em>, which is distributed as part of the TechnoTrend driver for Windows, be located in <em>/usr/lib/DVB/driver/frontends</em>.<br />
Start by downloading the driver for the TechnoTrend Premium S card and unzipping the archive file:</p>
<p><code>darkstar:~# lftp -c &quot;get http://www.technotrend.de/new/217g/tt_Premium_217g.zip&quot;<br />darkstar:~# unzip tt_Premium_217g.zip</code></p>
<p>Use the following set of commands to place a copy of SC_MAIN.MC in <em>/usr/lib/DVB/driver/frontends</em>:</p>
<p><code>darkstar:~# mkdir -p /usr/lib/DVB/driver/frontends<br />darkstar:~# cp software/OEM/HE/App/boot/SC_MAIN.MC /usr/lib/DVB/driver/frontends/Sc_main.mc</code></p>
<p>If you are using the TechnoTrend Budget T card, download the required firmware and place a copy in <em>/etc/dvb</em>:</p>
<p><code>darkstar:~# lftp -c &quot;get http://www.edafe.org/vdr/firmware/tda1004x.mc&quot;<br />darkstar:~# mkdir /etc/dvb<br />darkstar:~# cp tda1004x.mc /etc/dvb/</code></p>
<p>Continue by downloading the Linux-DVB driver source and unpacking the tarball:</p>
<p><code>darkstar:~# lftp -c &quot;get http://linuxtv.org/downloads/linuxtv-dvb-1.0.1.tar.gz&quot;<br />darkstar:~# tar -zxvf linuxtv-dvb-1.0.1.tar.gz</code></p>
<p>Move the resulting directory to <em>/usr/local/src/</em>, renaming it to DVB:</p>
<p><code>darkstar:~# mv linuxtv-dvb-1.0.1 /usr/local/src/DVB</code></p>
<p>Change to the <em>DVB</em> directory, build the drivers and then run the <em>makedev.napi</em> script:</p>
<p><code>darkstar:~# cd /usr/local/src/DVB/<br />darkstar:/usr/local/src/DVB# make<br />darkstar:/usr/local/src/DVB# driver/makedev.napi<br /></code></p>
<p>Change to the <em>driver</em> directory and run the command <em>make insmod</em> while observing the TV-output of your DVB-S card:</p>
<p><code>darkstar:/usr/local/src/DVB# cd driver/<br />darkstar:/usr/local/src/DVB/driver# make insmod</code></p>
<p>If the driver installed successfully, this message will appear and then fade:</p>
<p><code>(C) 2001 Convergence integrated media</code></p>
<h4>Scanning for Satellite Channels</h4>
<p>Check the <em>dvb-s</em> directory to see what configuration files are available and determine which one to use:</p>
<p><code>darkstar:~# ls /usr/local/src/DVB/apps/scan/dvb-s/</code></p>
<p>Run the following set of commands, replacing <em>Astra-19.E</em> as necessary:</p>
<p><code>darkstar:~# cd /usr/local/src/DVB/apps/scan/<br />darkstar:/usr/local/src/DVB/apps/scan# ./scan -o vdr dvb-s/Astra-19.E &gt; /etc/vdr/sat.conf</code></p>
<h4>Scanning for Terrestial Channels</h4>
<p>Download the source for Winfried K&ouml;hler&rsquo;s <em>w_scan</em> application and unpack the tarball:</p>
<p><code>darkstar:/usr/local/src/DVB/apps/scan# cd ~<br />darkstar:~# lftp -c &quot;get http://free.pages.at/wirbel4vdr/w_scan/w_scan-20060729.tar.bz2&quot;<br />darkstar:~# tar -xjf w_scan-20060729.tar.bz2</code></p>
<p>Move the resulting directory to <em>/usr/local/src/</em>, renaming it to WSCAN:</p>
<p><code>darkstar:~# mv w_scan-20060729 /usr/local/src/WSCAN</code></p>
<p>Use the pre-compiled version of <em>w_scan</em> that is included in the tarball to scan for available DVB-T channels:</p>
<p><code>darkstar:~# /usr/local/src/WSCAN/w_scan -o2 &rsaquo;&rsaquo; /etc/vdr/ter.conf</code></p>
<h4>Generating Channels.conf</h4>
<p>Employ <em>cat</em> to create a single <em>channels.conf</em> file:</p>
<p><code>darkstar:~# cd /etc/vdr/</p>
<p>darkstar:/etc/vdr/# cat sat.conf ter.conf &rsaquo; channels.conf</code><br />
If you are only using a single input source, rename either <em>sat.conf</em> or <em>ter.conf</em> to <em>channels.conf</em>.</p>
<h3>Installing VDR</h3>
<p>Continue by downloading the VDR source and unpacking the contents of the tarball:</p>
<p><code>darkstar:/usr/local/src/DVB/apps/scan# cd ~<br />darkstar:~# lftp -c &quot;get ftp://ftp.cadsoft.de/vdr/vdr-1.2.6.tar.bz2&quot;<br />darkstar:~# tar -xjf vdr-1.2.6.tar.bz2</code></p>
<p>Move the resulting directory to <em>/usr/local/src/</em>, renaming it to VDR:</p>
<p><code>darkstar:~# mv vdr-1.2.6 /usr/local/src/VDR</code></p>
<p>Change to the <em>VDR</em> directory and copy the configuration files to <em>/etc/vdr/</em>:</p>
<p><code>darkstar:~# cd /usr/local/src/VDR/<br />darkstar:/usr/local/src/VDR# cp keymacros.conf sources.conf svdrphosts.conf svdrpsend.pl /etc/vdr/<br />darkstar:/usr/local/src/VDR# chown vdr.video /etc/vdr/*</code></p>
<p>Build the VDR application with <a href="http://www.lirc.org/" target="_blank">support for Linux Infrared Remote Control</a>:</p>
<p><code>darkstar:/usr/local/src/VDR# make REMOTE=LIRC VFAT=1 NO_KBD=1</code></p>
<p>Download this version of <em>runvdr</em>, preconfigured to work with your installation:</p>
<p><code>darkstar:/usr/local/src/VDR# lftp -c &quot;get http://www.edafe.org/vdr/sh/<a href="http://www.edafe.org/vdr/sh/runvdr">runvdr</a>&quot;<br />darkstar:/usr/local/src/VDR# chmod +x runvdr</code></p>
<p>Download <em>rc.vdr</em> and move it to <em>/etc/rc.d/</em>:</p>
<p><code>darkstar:/usr/local/src/VDR# cd ~<br />darkstar:~# lftp -c &quot;get http://www.edafe.org/vdr/sh/<a href="http://www.edafe.org/vdr/sh/rc.vdr">rc.vdr</a>&quot;<br />darkstar:~# chmod +x rc.vdr<br />darkstar:~# mv rc.vdr /etc/rc.d/</code></p>
<p>Add the following lines to the end of <em>/etc/rc.d/rc.local</em> for VDR to start at boot:</p>
<p><code># Starting VDR<br />if [ -x /etc/rc.d/rc.vdr ]; then<br />&emsp;&emsp;echo &quot;Starting VDR&quot;<br />&emsp;&emsp;/etc/rc.d/rc.vdr &amp;<br />fi</code></p>
<p>Restart your computer and observe the TV-output of your DVB-S card. You should now be viewing the first channel listed in your <em>channels.conf</em> file.</p>
<h3>Installing LIRC</h3>
<p>Connect the USB receiver for the ATI Remote Wonder to your VDR. Download <em>lircd.conf</em>, preconfigured with the settings for the ATI Remote Wonder, and place it into <em>/etc/</em>.</p>
<p><code>darkstar:~# lftp -c &quot;get http://www.edafe.org/vdr/conf/<a href="http://www.edafe.org/vdr/conf/lircd.conf">lircd.conf</a>&quot;<br />darkstar:~# mv lircd.conf /etc/</code></p>
<p>Continue by downloading LIRC source and unpacking the contents of the tarball:</p>
<p><code>darkstar:~# lftp -c &quot;get http://www.edafe.org/vdr/tar/lirc-0.7.2.tar.bz2&quot;<br />darkstar:~# tar -xjf lirc-0.7.2.tar.bz2</code></p>
<p>Move the resulting directory to <em>/usr/local/src/</em>, renaming it to LIRC:</p>
<p><code>darkstar:~# mv lirc-0.7.2 /usr/local/src/LIRC</code></p>
<p>Change to the <em>LIRC</em> directory and launch the LIRC installer with:</p>
<p><code>darkstar:~# cd /usr/local/src/LIRC/<br />darkstar:/usr/local/src/LIRC# ./setup.sh &amp;&amp; make install</code></p>
<p>Choose the following options:<br />
<code>1 Driver configuration &gt; 8 USB devices &gt; 1 ATI RF Remote<br />2 Software configuration &gt; no selection<br />3 Save configuration &amp; run configure</code></p>
<p>Set the permissions for the device <em>/dev/lircd</em> with:</p>
<p><code>darkstar:/usr/local/src/LIRC# chmod 666 /dev/lircd</code></p>
<p>Add the following lines to <em>/etc/rc.d/rc.local</em>, before the entry for VDR, to start LIRC at boot:</p>
<p><code><br />
# Starting LIRC daemon<br />if [ -x /usr/local/sbin/lircd ]; then<br />&emsp;&emsp;echo &quot;Starting LIRC&quot;<br />&emsp;&emsp;/usr/local/sbin/lircd<br />fi</code></p>
<p>Restart your computer and observe the TV-output of your DVB-S card. You should now see the following message:</p>
<p><code>Learning Remote Control Keys (LIRC)<br />Phase 1: Detecting RC code Type<br />Press any key on the RC unit</code></p>
<p>Follow the instructions of the OSD to define the keys for the remote control.</p>
<h2>Documentation</h2>
<h3>VDR Wiki</h3>
<p><em>In English and German</em><br />
Online reference covering many aspects of the VDR. Useful if you want to further expand the functionality of your Freeview VDR or learn about other options for setup.<br /><a href="http://www.linuxtv.org/vdrwiki/index.php/Main_Page" target="_blank">www.vdr-wiki.de</a></p>
<h2>Help</h2>
<h3>VDR Portal</h3>
<p><em>In English and German</em><br />
Interact with other VDR users to help with your questions.<br /><a href="http://www.vdrportal.de/board/board.php?boardid=79" target="_blank">www.vdrportal.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2006/01/vdr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CLI magic: daily aliases</title>
		<link>http://edafe.org/2005/12/cli-magic-daily-aliases/</link>
		<comments>http://edafe.org/2005/12/cli-magic-daily-aliases/#comments</comments>
		<pubDate>Wed, 14 Dec 2005 14:42:24 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=766</guid>
		<description><![CDATA[&#8220;GNU programs are rife with additional options. Some of these options are so useful you may want to create an alias.&#8221; Keith Winston manages to save a lot of time working at the shell.www.linux.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;GNU programs are rife with additional options. Some of these options are so useful you may want to create an alias.&rdquo; Keith Winston manages to save a lot of time working at the shell.<br /><a href="http://www.linux.com/article.pl?sid=05/12/02/2152230" target="_blank">www.linux.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/12/cli-magic-daily-aliases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An old hacker slaps up Slackware</title>
		<link>http://edafe.org/2005/11/an-old-hacker-slaps-up-slackware/</link>
		<comments>http://edafe.org/2005/11/an-old-hacker-slaps-up-slackware/#comments</comments>
		<pubDate>Mon, 07 Nov 2005 17:36:29 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[slackware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=827</guid>
		<description><![CDATA[&#8220;Slackware is not for everyone. But it is a distribution that nearly everyone should try some day, for several reasons.&#8221; Joe Barr has used many different Linux distributions over the years. Until recently, he has never tried Slackware.www.linux.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Slackware is not for everyone. But it is a distribution that nearly everyone should try some day, for several reasons.&rdquo; Joe Barr has used many different Linux distributions over the years. Until recently, he has never tried Slackware.<br /><a href="http://www.linux.com/articles/49031" target="_blank">www.linux.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/11/an-old-hacker-slaps-up-slackware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware 10.2 tips</title>
		<link>http://edafe.org/2005/10/slackware-102-tips/</link>
		<comments>http://edafe.org/2005/10/slackware-102-tips/#comments</comments>
		<pubDate>Sun, 02 Oct 2005 11:51:14 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[slackware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=1067</guid>
		<description><![CDATA[&#8220;Writing a tips article is tricky. Veteran users want incredibly good tips. New users want tips that bring accessibility and understanding to Slackware. Find that balance here.&#8221;www.dualisanoob.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Writing a tips article is tricky. Veteran users want incredibly good tips.  New users want tips that bring accessibility and understanding to Slackware. Find that balance here.&rdquo;<br /><a href="http://www.dualisanoob.com/slack_102_tips.txt" target="_blank">www.dualisanoob.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/10/slackware-102-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the X window system?</title>
		<link>http://edafe.org/2005/09/what-is-the-x-window-system/</link>
		<comments>http://edafe.org/2005/09/what-is-the-x-window-system/#comments</comments>
		<pubDate>Fri, 02 Sep 2005 17:05:55 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=780</guid>
		<description><![CDATA[&#8220;Most people today run one of the desktop environments, KDE or GNOME. But if you look underneath, you&#8217;ll find the X Window System managing the display and you&#8217;ll find a window manager sitting between X and the desktop.&#8221; Ellen Siever &#8230; <a href="http://edafe.org/2005/09/what-is-the-x-window-system/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Most people today run one of the desktop environments, KDE or GNOME. But if you look underneath, you&rsquo;ll find the X Window System managing the display and you&rsquo;ll find a window manager sitting between X and the desktop.&rdquo; Ellen Siever sees through the X Window.<br /><a href="http://www.linuxdevcenter.com/pub/a/linux/2005/08/25/whatisXwindow.html" target="_blank">www.linuxdevcenter.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/09/what-is-the-x-window-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing Linux</title>
		<link>http://edafe.org/2005/07/securing-linux/</link>
		<comments>http://edafe.org/2005/07/securing-linux/#comments</comments>
		<pubDate>Tue, 12 Jul 2005 20:02:53 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=778</guid>
		<description><![CDATA[Mario Eberlein, Rene Auberger and Wolfram Andreas Richter give an overview of security concepts, installation issues, and potential threats and their exploits. They also offer &#8220;practical advice on how to secure and harden a Linux-based system&#8221;.www.ibm.com Part 1, Part 2, &#8230; <a href="http://edafe.org/2005/07/securing-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mario Eberlein, Rene Auberger and Wolfram Andreas Richter give an overview of security concepts, installation issues, and potential threats and their exploits. They also offer &ldquo;practical advice on how to secure and harden a Linux-based system&rdquo;.<br />www.ibm.com <a href="http://www.ibm.com/developerworks/linux/library/l-seclnx1.html" target="_blank">Part 1</a>, <a href="http://www.ibm.com/developerworks/linux/library/l-seclnx2.html" target="_blank">Part 2</a>, <a href="http://www.ibm.com/developerworks/linux/library/l-seclnx3/" target="_blank">Part 3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/07/securing-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RAID-1</title>
		<link>http://edafe.org/2005/06/raid-1/</link>
		<comments>http://edafe.org/2005/06/raid-1/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 06:54:27 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=782</guid>
		<description><![CDATA[RAID-1 can help protect your data from hard drive failure. This article is geared towards helping you to better understand and implement a RAID-1 device.www.linuxjournal.com Part 1, Part 2]]></description>
			<content:encoded><![CDATA[<p>RAID-1 can help protect your data from hard drive failure. This article is geared towards helping you to better understand and implement a RAID-1 device.<br />www.linuxjournal.com <a href="http://www.linuxjournal.com/article.php?sid=5653" target="_blank">Part 1</a>, <a href="http://www.linuxjournal.com/article.php?sid=5898" target="_blank">Part 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/06/raid-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware Linux 101</title>
		<link>http://edafe.org/2005/03/slackware-linux-101/</link>
		<comments>http://edafe.org/2005/03/slackware-linux-101/#comments</comments>
		<pubDate>Mon, 21 Mar 2005 14:41:42 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[runlevel]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[slackware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=830</guid>
		<description><![CDATA[Joe Brockmeier explains how Slackware initialises services, what the various runlevels are and how to add or remove services from the default install.www.ibm.com]]></description>
			<content:encoded><![CDATA[<p>Joe Brockmeier explains how Slackware initialises services, what the various runlevels are and how to add or remove services from the default install.<br /><a href="http://www.ibm.com/developerworks/linux/library/l-slack.html" target="_blank">www.ibm.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/03/slackware-linux-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware 10.1 review</title>
		<link>http://edafe.org/2005/03/slackware-101-review/</link>
		<comments>http://edafe.org/2005/03/slackware-101-review/#comments</comments>
		<pubDate>Thu, 10 Mar 2005 18:12:22 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[slackware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=823</guid>
		<description><![CDATA[Matthew Trow shares his sense of excitement about the release of Slackware 10.1 and tells why Slackware remains his preferred Linux flavour.www.osnews.com]]></description>
			<content:encoded><![CDATA[<p>Matthew Trow shares his sense of excitement about the release of Slackware 10.1 and tells why Slackware remains his preferred Linux flavour.<br /><a href="http://www.osnews.com/story/9752" target="_blank">www.osnews.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/03/slackware-101-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My workstation OS: Slackware</title>
		<link>http://edafe.org/2005/02/my-workstation-os-slackware/</link>
		<comments>http://edafe.org/2005/02/my-workstation-os-slackware/#comments</comments>
		<pubDate>Mon, 21 Feb 2005 13:28:05 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[slackware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=817</guid>
		<description><![CDATA[&#8220;Once I tried the full distro, I never looked back.&#8221; Michael Stibane explains why he is happy using Slackware. www.linux.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Once I tried the full distro, I never looked back.&rdquo; Michael Stibane explains why he is happy using Slackware.<br /><a href="http://www.linux.com/articles/40760" target="_blank"> www.linux.com </a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/02/my-workstation-os-slackware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Inc</title>
		<link>http://edafe.org/2005/02/linux-inc/</link>
		<comments>http://edafe.org/2005/02/linux-inc/#comments</comments>
		<pubDate>Wed, 02 Feb 2005 19:42:35 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=610</guid>
		<description><![CDATA[&#8220;Little understood by the outside world, the community of Linux programmers has evolved in recent years into something much more mature, organized, and efficient. Put bluntly, Linux has turned pro.&#8221; Steve Hamm takes you on a tour of what has &#8230; <a href="http://edafe.org/2005/02/linux-inc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Little understood by the outside world, the community of Linux programmers has evolved in recent years into something much more mature, organized, and efficient. Put bluntly, Linux has turned pro.&rdquo; Steve Hamm takes you on a tour of what has become the Linux phenomenon.<br /><a href="http://www.businessweek.com/magazine/content/05_05/b3918001_mz001.htm" target="_blank">www.businessweek.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/02/linux-inc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Point-and-click email crypto</title>
		<link>http://edafe.org/2005/01/point-and-click-email-crypto/</link>
		<comments>http://edafe.org/2005/01/point-and-click-email-crypto/#comments</comments>
		<pubDate>Thu, 20 Jan 2005 21:26:47 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[cryptography]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=757</guid>
		<description><![CDATA[&#8220;I don&#8217;t want people reading my mail.&#8221; Roy Hoobler explains how to use KGPG for email and file encryption under KDE.www.linuxjournal.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;I don&rsquo;t want people reading my mail.&rdquo; Roy Hoobler explains how to use KGPG for email and file encryption under KDE.<br /><a href="http://www.linuxjournal.com/article/7616" target="_blank">www.linuxjournal.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2005/01/point-and-click-email-crypto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: the thinking person&#8217;s IT solution</title>
		<link>http://edafe.org/2004/11/linux-the-thinking-persons-it-solution/</link>
		<comments>http://edafe.org/2004/11/linux-the-thinking-persons-it-solution/#comments</comments>
		<pubDate>Sat, 20 Nov 2004 19:07:32 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=634</guid>
		<description><![CDATA[&#8220;It is ironic that a fear of technology has sent thousands of companies hurtling into the arms of an IT vendor that has some of the most complex, resource hungry and insecure server technology on the market.&#8221; Malcolm Cartledge prefers &#8230; <a href="http://edafe.org/2004/11/linux-the-thinking-persons-it-solution/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;It is ironic that a fear of technology has sent thousands of companies hurtling into the arms of an IT vendor that has some of the most complex, resource hungry and insecure server technology on the market.&rdquo; Malcolm Cartledge prefers low cost and high reliability.<br /><a href="http://www.biosmagazine.co.uk/op.php?id=179" target="_blank">www.biosmagazine.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2004/11/linux-the-thinking-persons-it-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware 10: first impressions</title>
		<link>http://edafe.org/2004/08/slackware-10-first-impressions/</link>
		<comments>http://edafe.org/2004/08/slackware-10-first-impressions/#comments</comments>
		<pubDate>Sun, 01 Aug 2004 19:30:16 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[slackware]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=820</guid>
		<description><![CDATA[&#8220;Above all, I am impressed by Slackware&#8217;s stability, clean layout, easy customisation, and excellent package management system.&#8221; Michael Hall gives his opinion on Slackware.www.osnews.com]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Above all, I am impressed by Slackware&rsquo;s stability, clean layout, easy customisation, and excellent package management system.&rdquo; Michael Hall gives his opinion on Slackware.<br /><a href="http://www.osnews.com/story/7694" target="_blank">www.osnews.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2004/08/slackware-10-first-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring hard disks with SMART</title>
		<link>http://edafe.org/2004/06/monitoring-hard-disks-with-smart/</link>
		<comments>http://edafe.org/2004/06/monitoring-hard-disks-with-smart/#comments</comments>
		<pubDate>Tue, 01 Jun 2004 09:39:44 +0000</pubDate>
		<dc:creator>edafe</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[prevention]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[smart]]></category>

		<guid isPermaLink="false">http://edafe.org/?p=768</guid>
		<description><![CDATA[&#8220;Many users and system administrators don&#8217;t know that SMART systems are built into most modern ATA and SCSI hard disks.&#8221; Bruce Allen explains how to use Self-Monitoring, Analysis and Reporting Technology (SMART) to monitor the health of your hard disks &#8230; <a href="http://edafe.org/2004/06/monitoring-hard-disks-with-smart/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&ldquo;Many users and system administrators don&rsquo;t know that SMART systems are built into most modern ATA and SCSI hard disks.&rdquo; Bruce Allen explains how to use Self-Monitoring, Analysis and Reporting Technology (SMART) to monitor the health of your hard disks and preempt catastrophic failures.<br /><a href="http://www.linuxjournal.com/article/6983" target="_blank">www.linuxjournal.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://edafe.org/2004/06/monitoring-hard-disks-with-smart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

