<?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>cenolan.com &#187; Fedora 8</title>
	<atom:link href="http://www.cenolan.com/category/linux/fedora-8/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cenolan.com</link>
	<description>What you looking at?</description>
	<lastBuildDate>Sun, 14 Jun 2009 20:03:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How-To: Automated incremental daily backups to Amazon S3 using Duplicity</title>
		<link>http://www.cenolan.com/2008/12/how-to-incremental-daily-backups-amazon-s3-duplicity/</link>
		<comments>http://www.cenolan.com/2008/12/how-to-incremental-daily-backups-amazon-s3-duplicity/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 16:58:30 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[CentOS 5.x]]></category>
		<category><![CDATA[Fedora 10]]></category>
		<category><![CDATA[Fedora 8]]></category>
		<category><![CDATA[Fedora 9]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Yellow Dog Linux]]></category>
		<category><![CDATA[Amazon S3]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[duplicity]]></category>

		<guid isPermaLink="false">http://www.cenolan.com/?p=54</guid>
		<description><![CDATA[This guide shows how to use Amazon S3 with duplicity to make secure GPG encrypted automated daily incremental backups (snapshots) of a Linux server or desktop. I have been using this method on various servers for several months and it has proved to be a reliable, secure, cheap, and robust method to create automated backups.
I [...]]]></description>
			<content:encoded><![CDATA[<p>This guide shows how to use <a href="http://aws.amazon.com/s3/">Amazon S3</a> with <a href="http://duplicity.nongnu.org/">duplicity</a> to make secure GPG encrypted automated daily incremental backups (snapshots) of a Linux server or desktop. I have been using this method on various servers for several months and it has proved to be a reliable, secure, cheap, and robust method to create automated backups.</p>
<p>I have used this method on <a href="http://fedoraproject.org/">Fedora</a>, <a href="http://us.fixstars.com/products/ydl/">YDL</a>, and <a href="http://www.centos.org/">CentOS</a> but the instructions should equally apply to other Linux distributions including <a href="http://www.debian.org/">Debian</a> and <a href="http://www.ubuntu.com/">Ubuntu</a>. It will even work on OS X using the <a href="http://www.macports.org/">MacPorts</a> version of duplicity.</p>
<h3 id="toc-aims-of-this-guide">Aims of this guide</h3>
<p>This guide explains how to create a simple wrapper script for duplicity that allows you to automatically create GPG encrypted incremental backups that are saved to an Amazon S3 bucket. The script is designed to be executed as a daily cron job so that incremental snapshot backups are created each day. The script creates a full backup set on the 1st day of each month (or when an appropriate full backup cannot be found) and then creates incremental backups on subsequent days. </p>
<p>This guide provides a walk-through of how to create the GPG encryption key, and provides full scripts and example usage for both backup and restore. You could easily adapt the backup script so that it makes full backups each week, or otherwise adjust it to suit your individual needs.</p>
<p>This guide is written with the general Linux user in mind: you do need some understanding of basic linux concepts such as cron, permissions, and directory structures.</p>
<p><span id="more-54"></span></p>
<h3 id="toc-what-is-duplicity">What is duplicity?</h3>
<p>From the duplicity home page:</p>
<blockquote><p>Duplicity backs [up] directories by producing encrypted tar-format volumes and uploading them to a remote or local file server. Because duplicity uses librsync, the incremental archives are space efficient and only record the parts of files that have changed since the last backup. Because duplicity uses GnuPG to encrypt and/or sign these archives, they will be safe from spying and/or modification by the server.</p></blockquote>
<p>I think that says it all much more concisely than I could manage.</p>
<p>One thing to note is that in my experience, and on certain machines, duplicity can cause a lot of overhead and take a long time to complete. Thus duplicity is not always a viable option when backing up huge amounts of data. That said, for backing up the critical data from a standard web server it can be a great solution. Remember, that if you're backing up databases then you need to dump them into SQL files first. For MySQL databases I recommend <a href="http://sourceforge.net/projects/automysqlbackup/">automysqlbackup</a> for this. As always, YMMV.</p>
<h3 id="toc-before-we-start">Before we start</h3>
<p>You need to install duplicity (version &gt;= 0.4.3 for S3 support). This how-to doesn't cover that aspect, but suffice to say that duplicity is available as a package for most major distros so crack open your package manager (be it yum, apt, synaptics or whatever) and install duplicity along with all it's dependencies. </p>
<p>You also need GnuGP and librsync but they should both be automatically installed as dependencies of duplicity.</p>
<h3 id="toc-step-1-generate-a-new-gpg-key">Step 1 - Generate a new GPG key</h3>
<p>If you already have a GPG key that you want to use then skip this bit - you'll just need to know what your key is which you can get through "gpg --list-keys" - it is the bit after the / in the "pub" line. Otherwise, read on...</p>
<p>I am going to presume that you'll be running your backup jobs as root, so open a terminal and become root. If you're going to run them as a different user then become that user instead but ensure that the user you have chosen has sufficient permissions to backup the data you require.</p>
<p>Now run "gpg --gen-key" to generate your key and follow the prompts:</p>
<pre><code># gpg --gen-key
gpg (GnuPG) 1.4.9; Copyright (C) 2008 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Please select what kind of key you want:
   (1) DSA and Elgamal (default)
   (2) DSA (sign only)
   (5) RSA (sign only)
Your selection?
</code></pre>
<p>Accept the default (Enter) or press 1 for DSA and Elgamal.</p>
<pre><code>DSA keypair will have 1024 bits.
ELG-E keys may be between 1024 and 4096 bits long.
What keysize do you want? (2048) </code></pre>
<p>Again, the default (2048) is fine. Just hit Enter.</p>
<pre><code>Requested keysize is 2048 bits
Please specify how long the key should be valid.
         0 = key does not expire
      &lt;n&gt;  = key expires in n days
      &lt;n&gt;w = key expires in n weeks
      &lt;n&gt;m = key expires in n months
      &lt;n&gt;y = key expires in n years
Key is valid for? (0) </code></pre>
<p>I don't want my key to expire, so I just hit Enter again to accept the default. Do whatever you want.</p>
<pre><code>Key does not expire at all
Is this correct? (y/N) </code></pre>
<p>Sure is. Hit y and then Enter.</p>
<pre><code>You need a user ID to identify your key; the software constructs the user ID
from the Real Name, Comment and Email Address in this form:
    "Heinrich Heine (Der Dichter) &lt;heinrichh@duesseldorf.de&gt;"

Real name: Duplicity Backup
Email address: duplicity@mydomain.com
Comment: Key for duplicity
You selected this USER-ID:
    "Duplicity Backup (Key for duplicity) &lt;duplicity@mydomain.com&gt;"

Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit?</code></pre>
<p>Enter the requested details and then press O for Okay.</p>
<pre><code>You need a Passphrase to protect your secret key.

Enter Passphrase:</code></pre>
<p>Enter a passphrase here. It should be something long and complex. Anything will do, but make sure you remember it because you'll need it later. When finished press Enter and then re-enter your passphrase when prompted and then press Enter again.</p>
<p>At this stage you may have to help generate some entropy by doing some other task - I find that running "updatedb" in another shell is pretty good, or just randomly tapping the keyboard can do the trick too.</p>
<p>Once it has finished you should get a message like this:</p>
<pre><code>gpg: key BE9274BD marked as ultimately trusted
public and secret key created and signed.

gpg: checking the trustdb
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
pub   1024D/BE9274BD 2008-11-30
      Key fingerprint = 2FB4 A20E 57BA 80BA 9576  3ABD F79F D430 BE92 74BD
uid                  Duplicity Backup (Key for duplicity) &lt;duplicity@mydomain.com&gt;
sub   2048g/F8F35AD8 2008-11-30</code></pre>
<p>Make a note of the key (BE9274BD in this case) as you'll need that later too.</p>
<p><strong><em>Important: Remember to backup your GPG key pair somewhere safe and off the current machine. Without this key pair your backups are totally useless to you, so if you lose it and need to restore a backup then you're up a creak without a paddle. <a href="http://www.debuntu.org/how-to-import-export-gpg-key-pair">This article</a> shows the proper way to export (and import) your GPG key pair.</em></strong></p>
<h3 id="toc-step-2-the-backup-wrapper-script">Step 2 - The backup wrapper script</h3>
<p>This bash wrapper script does a full backup on the 1st day of each month followed by incremental backups on subsequent days. It will also delete old backup sets after X months have passed and it also emails a log report each day giving some valuable statistics about your backup and reporting any errors.</p>
<p>You will need to have the following information handy to edit this backup script for your needs:</p>
<ul>
<li>Your Amazon S3 Access Key ID</li>
<li>Your Amazon S3 Secret Access Key</li>
<li>Your GPG key</li>
<li>Your GPG key passphrase</li>
<li>A list of directories you want to back up</li>
<li>An email address to send the logs to</li>
<li>A unique name for an Amazon S3 bucket (the bucket will be created if it doesn't yet exist)</li>
</ul>
<p>The script is as follows, you need to change the bits in bold at least but pay attention to all the variables as you may want to tweak them to suit your needs.</p>
<p>Note that includes/excludes work on a 'fist match' basis. So if you want to exclude something in a directory, you need to exclude the file/subdirectory before including the directory. For more info see the duplicity man pages.</p>
<pre><code>#!/bin/bash

# Set up some variables for logging
LOGFILE="/var/log/backup.log"
DAILYLOGFILE="/var/log/backup.daily.log"
HOST=`hostname`
DATE=`date +%Y-%m-%d`
MAILADDR="<strong>sysadmin@mydomain.com</strong>"

# Clear the old daily log file
cat /dev/null &gt; ${DAILYLOGFILE}

# Trace function for logging, don't change this
trace () {
        stamp=`date +%Y-%m-%d_%H:%M:%S`
        echo "$stamp: $*" &gt;&gt; ${DAILYLOGFILE}
}

# Export some ENV variables so you don't have to type anything
export AWS_ACCESS_KEY_ID="<strong>YOUR_ACCESS_KEY_ID</strong>"
export AWS_SECRET_ACCESS_KEY="<strong>YOUR_SECRET_ACCESS_KEY</strong>"
export PASSPHRASE="<strong>YOUR_GPG_PASSPHRASE</strong>"

# Your GPG key
GPG_KEY=<strong>YOUR_GPG_KEY</strong>

# How long to keep backups for
OLDER_THAN="3M"

# The source of your backup
SOURCE=/

# The destination
# Note that the bucket need not exist
# but does need to be unique amongst all
# Amazon S3 users. So, choose wisely.
DEST="s3+http://<strong>your_s3_bucket_name</strong>"

FULL=
if [ $(date +%d) -eq 1 ]; then
        FULL=full
fi;

trace "Backup for local filesystem started"

trace "... removing old backups"

duplicity remove-older-than ${OLDER_THAN} ${DEST} &gt;&gt; ${DAILYLOGFILE} 2&gt;&amp;1

trace "... backing up filesystem"

duplicity \
    ${FULL} \
    --encrypt-key=${GPG_KEY} \
    --sign-key=${GPG_KEY} \
    --volsize=250 \
<strong>    --include=/vhosts \
    --include=/etc \
    --include=/home \
    --include=/root \
    --exclude=/** \</strong>
    ${SOURCE} ${DEST} &gt;&gt; ${DAILYLOGFILE} 2&gt;&amp;1

trace "Backup for local filesystem complete"
trace "------------------------------------"

# Send the daily log file by email
cat "$DAILYLOGFILE" | mail -s "Duplicity Backup Log for $HOST - $DATE" $MAILADDR

# Append the daily log file to the main log file
cat "$DAILYLOGFILE" &gt;&gt; $LOGFILE

# Reset the ENV variables. Don't need them sitting around
export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=
export PASSPHRASE=
</code></pre>
<p>Save the script somewhere and give it an appropriate name. I saved it a /usr/bin/duplicity-backup and make sure to chmod the script to 700 - it contains some sensitive information so we don't want none privileged users to have read access to it. Run the script as a test then set it up as a daily cron job to run at an appropriate time of night when the server isn't doing much else.</p>
<h3 id="toc-step-3-the-restore-wrapper-script">Step 3 - The restore wrapper script</h3>
<p>Clearly we need a way to restore from a backup, so use the following script to do just that:</p>
<pre><code>#!/bin/bash
# Export some ENV variables so you don't have to type anything
export AWS_ACCESS_KEY_ID="<strong>YOUR_ACCESS_KEY_ID</strong>"
export AWS_SECRET_ACCESS_KEY="<strong>YOUR_SECRET_ACCESS_KEY</strong>"
export PASSPHRASE="<strong>YOUR_GPG_PASSPHRASE</strong>"

# Your GPG key
GPG_KEY=<strong>YOUR_GPG_KEY</strong>

# The destination
DEST="s3+http://<strong>your_s3_bucket_name</strong>"

if [ $# -lt 3 ]; then echo "Usage $0 &lt;date&gt; &lt;file&gt; &lt;restore-to&gt;"; exit; fi

duplicity \
    --encrypt-key=${GPG_KEY} \
    --sign-key=${GPG_KEY} \
    --file-to-restore $2 \
    --restore-time $1 \
    ${DEST} $3

# Reset the ENV variables. Don't need them sitting around
export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=
export PASSPHRASE= </code></pre>
<p>Again, save this file as something sensible and chmod it to 700 to prevent prying eyes. I saved it as /usr/bin/duplicity-restore but feel free to put it wherever you like.</p>
<p>To do a restore simply invoke the script as follows:</p>
<pre><code>duplicity-restore &lt;date&gt; &lt;file&gt; &lt;restore-to&gt;</code></pre>
<p>Some notes on usage: Paths are relative not absolute. So /home/username would be backed up as home/username. You can restore whole directories but the destination needs to exist first. For example, to restore /home/username from November 20 2008 to a local directory 'restore', doing the <strong>following would not work</strong> because ./home does not exist:</p>
<pre><code>cd ~
mkdir restore
cd restore
duplicity-restore "2008-11-20" home/username home/username</code></pre>
<p>However, the <strong>following would work</strong> and would restore the directory to ./username:</p>
<pre><code>duplicity-restore "2008-11-20" home/username username</code></pre>
<p>That's all there is to it. As mentioned I've been using this method for several months to back up a variety of servers and it works very nicely. I hope it works just as well for you too!</p>
<h3 id="toc-credits">Credits</h3>
<p>This solution is the combination of a couple of tips and tricks I found while trawling the web, notably from <a href="http://www.randys.org/2007/11/16/how-to-automated-backups-to-amazon-s-s3-with-duplicity/">this howto at randys.org</a> and <a href="http://www.linode.com/forums/viewtopic.php?p=14875#14875">this post over at the linode.com forums</a>. Credit and thanks goes to the original authors - I have merely hacked their ideas together and added a few touches of my own.</p>
<p>If you find this useful or have any comments or questions then please respond below!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cenolan.com/2008/12/how-to-incremental-daily-backups-amazon-s3-duplicity/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>RPM installation of Broadcom 802.11 STA wireless driver in Fedora 8/9/10</title>
		<link>http://www.cenolan.com/2008/11/rpm-install-broadcom-wireless-sta-driver-fedora/</link>
		<comments>http://www.cenolan.com/2008/11/rpm-install-broadcom-wireless-sta-driver-fedora/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 11:53:54 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fedora 10]]></category>
		<category><![CDATA[Fedora 8]]></category>
		<category><![CDATA[Fedora 9]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Broadcom]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[RPM]]></category>

		<guid isPermaLink="false">http://www.cenolan.com/?p=21</guid>
		<description><![CDATA[RPMs for the Broadcom 802.11 STA Wireless Driver are now available from the rpmfusion.org repos for Fedora 8, 9 and 10.
This is an official-release of Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver for use with Broadcom's BCM4311-, BCM4312-, BCM4321-, and BCM4322-based hardware. This driver also supports the incorrectly identified BCM4328 chipset which is actually a [...]]]></description>
			<content:encoded><![CDATA[<p>RPMs for the Broadcom 802.11 STA Wireless Driver are now available from the <a href="http://rpmfusion.org/">rpmfusion.org</a> repos for Fedora 8, 9 and 10.</p>
<p>This is an official-release of Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver for use with Broadcom's BCM4311-, BCM4312-, BCM4321-, and BCM4322-based hardware. This driver also supports the incorrectly identified BCM4328 chipset which is actually a BCM4321 or BCM4322 chipset.</p>
<p>Previously I explained <a href="http://www.cenolan.com/2008/10/installing-the-broadcom-sta-driver-fedora-9/">how to build the Broadcom STA driver from source</a> but now the installation and updates can all be taken care of using yum and the rpmfusion non-free repository. Just follow these two simple steps:</p>
<p><span id="more-21"></span></p>
<p><strong>1) Enable the rpmfusion non-free repository.</strong></p>
<p>The broadcom-wl and wl-kmod RPMs that we need are in the rpmfusion non-free repository which also requires the rpmfusion free repository. To enable these repos in Fedora simply do this:</p>
<pre><code>su -c 'rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm'</code></pre>
<p><strong>2) Update and install the driver package</strong></p>
<p>Now that you have the appropriate repository enabled, to install the driver package we first ensure that we have the latest updates and then install the "broadcom-wl" package which will bring with it the required "kmod-wl" package:</p>
<pre><code>su -
yum update
yum install broadcom-wl</code></pre>
<p><strong>3) Make a couple of adjustments</strong></p>
<p>At this stage you should reboot and provided you have Network Manager running (default setting for F10) it should detect your Broadcom wireless device and you should be able to connect to your wireless network.</p>
<p>If you're having problems then it is likely some conflict between Network Manager and the network service. To ensure that Network Manager can use the wireless go to System &gt; Administration &gt; Network and select the wireless device (if it's not there then this doesn't apply to you). Edit the device and check "Controlled by Network Manager" and "Activate device when computer starts". Close Network Configuration, save changes and then reboot.</p>
<p>You should also read the license and readme which are located in /usr/share/doc/broadcom-wl-5.10.27.6/</p>
<p><strong>4) Enjoy your wireless!</strong></p>
<p>That's all there is to it. At this stage you may need to reboot (if you didn't already) in order to enable the new driver and any new kernel that was installed during the update.</p>
<p>When future kernels are released a simple "yum update" command should install the new kernel and also pull in the updated Broadcom driver for that new kernel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cenolan.com/2008/11/rpm-install-broadcom-wireless-sta-driver-fedora/feed/</wfw:commentRss>
		<slash:comments>93</slash:comments>
		</item>
		<item>
		<title>Custom build of synaptics for Fedora 8 x86_64 on MacBook</title>
		<link>http://www.cenolan.com/2008/07/custom-build-of-synaptics-for-fedora-8-x86_64-on-macbook/</link>
		<comments>http://www.cenolan.com/2008/07/custom-build-of-synaptics-for-fedora-8-x86_64-on-macbook/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 21:39:41 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fedora 8]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mactel-linux]]></category>
		<category><![CDATA[RPM]]></category>
		<category><![CDATA[synaptics]]></category>

		<guid isPermaLink="false">http://www.cenolan.com/?p=19</guid>
		<description><![CDATA[Based on the patches found in this post over at Ubuntu forums I have created an updated synaptics touchpad driver RPM package for Fedora 8 x86_64.
As the original author notes, this makes it more enjoyable to use the touchpad while using the MacBook. It does two things: 

Adds the option "MultiFingerButton" to synaptics. This allows [...]]]></description>
			<content:encoded><![CDATA[<p>Based on the patches found in <a href="http://ubuntuforums.org/showthread.php?t=790589">this post</a> over at Ubuntu forums I have created an updated synaptics touchpad driver RPM package for Fedora 8 x86_64.</p>
<p>As the original author notes, this makes it more enjoyable to use the touchpad while using the MacBook. It does two things: </p>
<ol>
<li>Adds the option "MultiFingerButton" to synaptics. This allows us to configure the touchpad to right-click and middle-click by placing two or three fingers on the pad and then clicking the button. In my experience this is far more reliable than the "two finger tap" method of right-clicking.</li>
<li> It makes the mouse arrow more stable - I have found this to be a HUGE improvement in usability over the stock synaptics driver. With the original driver, if you put two fingers on the mousepad and release only one, the mouse arrow moves. This is the default behaviour in Linux and Windows, but in MacOSX, the mouse arrow stays put, and in my personal opinion, this is a much better behaviour. This patch makes it behave just like MacOSX. This may not sound much, but you'll find it makes a huge difference to the stability and usability of the touchpad.</li>
</ol>
<p><span id="more-19"></span></p>
<p>Install the RPM from my <a href="http://www.cenolan.com/fedora8">Fedora 8 page</a> and add this option to the InputDevice Section in your xorg.conf, just like this:</p>
<pre><code>	Option		"MultiFingerButton"	"1"</code></pre>
<pre><code>	Option		"MultiFingerButton"	"2"</code></pre>
<p>With the value 1, you get middle-clicking if you click the button while resting two fingers on the mousepad, and right-clicking while resting three fingers.</p>
<p>With the value 2, it reverses, and you get right-clicking if you click while resting two fingers on the mousepad, and middle-clicking while resting three fingers. This is the behaviour in MacOSX.</p>
<p>Try it out, and give your opinion. If you don't like it, you can always revert to the default Fedora package.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cenolan.com/2008/07/custom-build-of-synaptics-for-fedora-8-x86_64-on-macbook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fedora 8 x86_64 fixes for battery being reported twice error</title>
		<link>http://www.cenolan.com/2008/07/fedora-8-x86_64-fixes-for-battery-being-reported-twice-error/</link>
		<comments>http://www.cenolan.com/2008/07/fedora-8-x86_64-fixes-for-battery-being-reported-twice-error/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 15:03:16 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fedora 8]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[hal]]></category>

		<guid isPermaLink="false">http://www.cenolan.com/?p=18</guid>
		<description><![CDATA[The latest 2.6.25.x Fedora 8 kernels have both ACPI_PROCFS_POWER and ACPI_SYSFS_POWER turned on and this can cause a strange problem with HAL which results in it incorrectly displaying the same battery twice and reporting incorrect charge levels for the "bogus" battery. This in turn creates problems with power management software such as kpowersave and gnome-power-manager. [...]]]></description>
			<content:encoded><![CDATA[<p>The latest 2.6.25.x Fedora 8 kernels have both ACPI_PROCFS_POWER and ACPI_SYSFS_POWER turned on and this can cause a strange problem with HAL which results in it incorrectly displaying the same battery twice and reporting incorrect charge levels for the "bogus" battery. This in turn creates problems with power management software such as kpowersave and gnome-power-manager. </p>
<p>I have only seen this <a href="http://forums.fedoraforum.org/showthread.php?p=1041362">reported</a> on some specific x86_64 machines but it may affect other architectures too.</p>
<p><span id="more-18"></span></p>
<p>The problem has been reported (and fixed) in many other distros and the <a href="http://gitweb.freedesktop.org/?p=hal.git;a=commitdiff_plain;h=4541abd23fd02118a1a7f8b825aed338d2a5d638;hp=e3eb726da49a8cdc9e93905777a6e2d71ae878b3">patch to fix it</a> has been in circulation since January. The patch was even created by someone at RedHat so it's slightly annoying that it hasn't made it yet into the Fedora versions of HAL. I can only assume it is an oversight by the HAL development team or the package maintainers. However, at the very least, a response to the bug report would have been welcome.</p>
<p>The RedHat bug report can be found <a href="https://bugzilla.redhat.com/show_bug.cgi?id=452356">here (Bug #452356)</a> and contains links to various other reports which contain plenty more information.</p>
<p>For anyone suffering from the same problem and impatient for a fix I've created a set of RPMs that include the patch. You can find them over at my <a href="http://www.cenolan.com/fedora8/">Fedora 8 page</a>.</p>
<p>Hope this is useful to someone. Usual disclaimers apply: if it breaks your machine then its not my fault.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cenolan.com/2008/07/fedora-8-x86_64-fixes-for-battery-being-reported-twice-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Banshee 1.0 RPM for Fedora 8 x86_64</title>
		<link>http://www.cenolan.com/2008/07/banshee-10-rpm-for-fedora-8-x86_64/</link>
		<comments>http://www.cenolan.com/2008/07/banshee-10-rpm-for-fedora-8-x86_64/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 14:38:20 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fedora 8]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://www.cenolan.com/?p=16</guid>
		<description><![CDATA[Banshee 1.0 was released on June 5 2008. At the time of writing I haven't been able to find an official Fedora 8 RPM build so I have built my own using the Fedora 9 source RPM and made it available here for you to download and install.
For those that don't know, Banshee is a [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://banshee-project.org/'><img src="http://www.cenolan.com/wordpress/wp-content/uploads/2008/07/banshee-logo.png" alt="Banshee Media Player" title="Banshee Media Player" width="300" height="100" class="alignleft size-full wp-image-17" /></a>Banshee 1.0 was released on June 5 2008. At the time of writing I haven't been able to find an official Fedora 8 RPM build so I have built my own using the Fedora 9 source RPM and made it available here for you to download and install.</p>
<p>For those that don't know, Banshee is a great multimedia player for Linux with support for iPod syncing, podcasts, streaming radio, video and lots more. For iPod owners Banshee is one of few viable Linux alternatives to iTunes.</p>
<p><span id="more-16"></span></p>
<p>For Fedora 8 x86_64 users you can install my build of Banshee 1.0 using the following commands:</p>
<pre><code>wget http://www.cenolan.com/fedora8/banshee-1.0.0-1.fc8.x86_64.rpm
yum localinstall banshee-1.0.0-1.fc8.x86_64.rpm --nogpgcheck</code></pre>
<p>Note this a 64 bit build only! If you want to build it for i386 or another architecture then you can do so using the <a href="http://koji.fedoraproject.org/koji/buildinfo?buildID=52056">F9 source RPM available from Koji here</a>.</p>
<p>More files, including the debug and devel packages over at my <a href="http://www.cenolan.com/fedora8/">Fedora 8 page</a>.</p>
<p>Usual disclaimers apply: if it breaks your machine then its not my fault.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cenolan.com/2008/07/banshee-10-rpm-for-fedora-8-x86_64/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fedora kernel fixes and files for MacBook 3,1 (Santa Rosa)</title>
		<link>http://www.cenolan.com/2008/04/fedora-kernel-fixes-and-files-for-macbook/</link>
		<comments>http://www.cenolan.com/2008/04/fedora-kernel-fixes-and-files-for-macbook/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 18:03:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fedora 8]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mactel-linux]]></category>

		<guid isPermaLink="false">http://www.cenolan.com/?p=7</guid>
		<description><![CDATA[Following on from my previous post, I have been making some RPM packages available for Fedora 8 and the MacBook 3,1 Santa Rosa.
The kernel packages are not needed now since Fedora 8 kernel 2.6.24.3-50 (and newer) already contains the MacBook specific fixes. However, at the time of writing the gstreamer packages are still required if [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from my previous post, I have been making some RPM packages available for Fedora 8 and the MacBook 3,1 Santa Rosa.</p>
<p>The kernel packages are not needed now since Fedora 8 kernel 2.6.24.3-50 (and newer) already contains the MacBook specific fixes. However, at the time of writing the gstreamer packages are still required if you want to use gstreamer based applications with the MacBook iSight camera.</p>
<p>Before downloading, please take care of my bandwidth. If you don't need the package, please don't download it.</p>
<p>You can <a title="Fedora 8 kernel fixes and files for MacBook 3,1 (Santa Rosa)" href="http://www.cenolan.com/fedora8/">download the packages here</a>.</p>
<p>There is also <a title=" Guide: Fedora 8 on Macbook 3,1 Santa Rosa" href="http://forums.fedoraforum.org/forum/showthread.php?t=179233">this thread at fedoraforum.org</a> which may be helpful.</p>
<p>If you find any problems or have any suggestions please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cenolan.com/2008/04/fedora-kernel-fixes-and-files-for-macbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Fedora 8 on a MacBook</title>
		<link>http://www.cenolan.com/2008/04/installing-fedora-8-on-a-macbook/</link>
		<comments>http://www.cenolan.com/2008/04/installing-fedora-8-on-a-macbook/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 16:16:18 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fedora 8]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mactel-linux]]></category>

		<guid isPermaLink="false">http://www.cenolan.com/?p=4</guid>
		<description><![CDATA[The MacBook is great, but OS X is not really my cup of tea and I choose not to use Windows. Luckily Fedora 8 works like a charm on the MacBook and with a bit of configuring you can get all the hardware working properly.
I couldn't find any information on the lazyweb about installing Fedora [...]]]></description>
			<content:encoded><![CDATA[<p>The MacBook is great, but OS X is not really my cup of tea and I choose not to use Windows. Luckily Fedora 8 works like a charm on the MacBook and with a bit of configuring you can get all the hardware working properly.</p>
<p>I couldn't find any information on the lazyweb about installing Fedora 8 on a MacBook so I recorded what I did and made a detailed how-to which is posted in the wiki over at <a title="How to install Fedora 8 on Macbook 3,1" href="http://www.mactel-linux.org/wiki/Fedora8OnMacBookSantaRosa">mactel-linux.org</a>. The guide shows you step-by-step how to install and configure Fedora 8 x86_64 on the MacBook and works with both MacBook version 3,1 (from late 2007) or version 4,1 (from early 2008).</p>
<p>Big up to the guys at Fedora who gave in to my relentless nagging and integrated some of the mactel-linux patches into the latest Fedora kernels. Without them I'd still be spending my weekends rolling kernels!</p>
<p>If you find the guide useful or have any comments or suggestions then let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cenolan.com/2008/04/installing-fedora-8-on-a-macbook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
