<?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>Nozell, rhymes with Oh Hell &#187; config</title>
	<atom:link href="http://nozell.com/blog/tag/config/feed/" rel="self" type="application/rss+xml" />
	<link>http://nozell.com/blog</link>
	<description>Marc Nozell's random stuff -- mostly GNU/Linux, technology, genealogy, family</description>
	<lastBuildDate>Mon, 09 Jan 2012 17:56:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Building F-Spot from source on Ubuntu</title>
		<link>http://nozell.com/blog/2007/02/08/building-f-spot-from-source/</link>
		<comments>http://nozell.com/blog/2007/02/08/building-f-spot-from-source/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 17:56:57 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[config]]></category>
		<category><![CDATA[edgy]]></category>
		<category><![CDATA[f-spot]]></category>
		<category><![CDATA[feisty]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/2007/02/08/building-f-spot-from-source/</guid>
		<description><![CDATA[The instructions How to Build F-Spot from HEAD are mostly correct for Ubuntu/Edgy and Ubuntu/Feisty, but leave out a number of packages that need to be installed before autogen.sh is run. Be sure to also install the following packages: sudo apt-get install mono-devel \ libglib2.0-dev libmono-dev libmono-system-runtime2.0-cil \ libexif-dev libgnomeui-dev liblcms1-dev libgphoto2-2-dev \ libusb-dev And [...]]]></description>
			<content:encoded><![CDATA[<p>The instructions <a href="http://f-spot.org/How_To_Build_from_HEAD">How to Build F-Spot from HEAD</a> are mostly correct for Ubuntu/Edgy and Ubuntu/Feisty, but leave out a number of packages that need to be installed before autogen.sh is run. </p>
<p>Be sure to also install the following packages:</p>
<p> <code>sudo apt-get install mono-devel \<br />
              libglib2.0-dev libmono-dev libmono-system-runtime2.0-cil \<br />
              libexif-dev libgnomeui-dev liblcms1-dev libgphoto2-2-dev \<br />
              libusb-dev</code></p>
<p>And instead of <code>make install</code>, use <code>make -k install</code> since it will attempt to run scrollkeeper which attempts to update /var/lib/scrollkeeper/scrollkeeper_docs.  </p>
<p>The offending line is: <code>scrollkeeper-update -p /var/lib/scrollkeeper -o /home/marc/unstable/f-spot/share/omf/f-spot</code></p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2007/02/08/building-f-spot-from-source/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Moving photos around behind f-spot&#8217;s back</title>
		<link>http://nozell.com/blog/2006/07/02/moving-photos-around-behind-f-spots-back/</link>
		<comments>http://nozell.com/blog/2006/07/02/moving-photos-around-behind-f-spots-back/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 01:44:45 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[f-spot]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/2006/07/02/moving-photos-around-behind-f-spots-back/</guid>
		<description><![CDATA[I&#8217;ve been using f-spot since it showed up in Ubuntu/Breezy and have been keeping all my photos in a directory structure like this: /PHOTOS/Photos/2006.06.30/ /PHOTOS/Photos/2006.07.01/ But sometimes I&#8217;ve forgotten to unclick the &#8220;Copy file to the Photos folder&#8221; box in the photos import dialog and end up with photos under ~/Photos/. Recently I checked and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using f-spot since it showed up in Ubuntu/Breezy and have been keeping all my photos in a directory structure like this:<br />
<code><br />
/PHOTOS/Photos/2006.06.30/<br />
/PHOTOS/Photos/2006.07.01/<br />
</code><br />
But sometimes I&#8217;ve forgotten to unclick the &#8220;Copy file to the Photos folder&#8221; box in the photos import dialog and end up with photos under ~/Photos/.  Recently I checked and found there were almost a gigabytes worth of photos under there. </p>
<p>So this is what I did to move them to under /PHOTOS/Photos/ and keep all the tags and metadata correct.</p>
<ul>
<li>Back up /home and /PHOTOS to an external USB.  I love rsnapshot.<br />
<code>$ rsnapshot daily</code>
</li>
<li>make an extra backup of the f-spot database<br />
<code>$ cp ~/.gnome2/f-spot/photos.db photos-backup.db </code>
</li>
<li>Start poking around the f-spot database and updating it.<br />
<code>$ sqlite3 ~/.gnome2/f-spot/photos.db<br />
sqlite> .schema photos<br />
        CREATE TABLE photos (   id INTEGER PRIMARY KEY NOT NULL,<br />
                                time               INTEGER NOT NULL,<br />
                                directory_path     STRING NOT NULL,<br />
                                name               STRING NOT NULL,<br />
                                description        TEXT NOT NULL,<br />
                                default_version_id INTEGER NOT NULL<br />
                                );<br />
</code>
</li>
<li>See how many photos are in ~/Photos&#8230;<br />
<code>sqlite> select count(*) from photos where directory_path like '/home/marc/Photos/%';<br />
260<br />
</code>
</li>
<li>Take a look at a few of them to see the path names&#8230;<br />
<code>sqlite> select directory_path from photos where directory_path like '/home/marc/Photos/%' limit 0,10;<br />
</code>
</li>
<li>Update the pathname to my prefered one.  I&#8217;ve added an &#8216;a&#8217; to the end just so I won&#8217;t overwrite an existing directory.<br />
<code>sqlite> update photos set directory_path = "/PHOTOS/Photos/2006.06.22a" where directory_path = "/home/marc/Photos/2006/6/22";<br />
sqlite> .quit<br />
</code>
</li>
<li>Make the directory and move the files to the new location&#8230;<br />
<code>mkdir /PHOTOS/Photos/2006.06.22a<br />
mv -v /home/marc/Photos/2006/6/22/HPIM117* /PHOTOS/Photos/2006.06.22a<br />
</code>
</li>
<p>Repeat for each directory.  I did it all within emacs&#8217; shell so cut-n-paste made it a snap.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2006/07/02/moving-photos-around-behind-f-spots-back/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Another list of Ubuntu essentials</title>
		<link>http://nozell.com/blog/2006/06/29/another-list-of-ubuntu-essentials/</link>
		<comments>http://nozell.com/blog/2006/06/29/another-list-of-ubuntu-essentials/#comments</comments>
		<pubDate>Thu, 29 Jun 2006 16:53:01 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/2006/06/29/another-list-of-ubuntu-essentials/</guid>
		<description><![CDATA[Mark Pilgrim has compiled his list of Ubuntu essentials &#8212; time to add some KDE goodness to &#8216;My Ubuntu/Dapper Configuration&#8216; page&#8230;]]></description>
			<content:encoded><![CDATA[<p>Mark Pilgrim has compiled <a href="http://diveintomark.org/archives/2006/06/26/essentials-2006">his list of Ubuntu essentials</a> &#8212; time to add some KDE goodness to &#8216;<a href="http://nozell.com/blog/my-ubuntu-dapper-configuration/">My Ubuntu/Dapper Configuration</a>&#8216; page&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2006/06/29/another-list-of-ubuntu-essentials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Ubuntu/Dapper Configuration</title>
		<link>http://nozell.com/blog/2006/06/28/check-out-my-dapper-configuration/</link>
		<comments>http://nozell.com/blog/2006/06/28/check-out-my-dapper-configuration/#comments</comments>
		<pubDate>Wed, 28 Jun 2006 15:13:14 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/2006/06/28/check-out-my-dapper-configuration/</guid>
		<description><![CDATA[I&#8217;ve posted some extensive notes on all the post-installation configuration steps needed to make an Ubuntu/Dapper standard install the way I like it &#8212; dual head, personal &#038; corporate email, network manager, f-spot, etc Check it out: My Ubuntu/Dapper Configuration]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve posted <a href="http://nozell.com/blog/my-ubuntu-dapper-configuration/">some extensive notes</a> on all the post-installation configuration steps needed to make an Ubuntu/Dapper standard install the way I like it &#8212; dual head, personal &#038; corporate email, network manager, f-spot, etc</p>
<p>Check it out: <a href="http://nozell.com/blog/my-ubuntu-dapper-configuration/">My Ubuntu/Dapper Configuration</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2006/06/28/check-out-my-dapper-configuration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More on Dual Monitor with Ubuntu/Dapper</title>
		<link>http://nozell.com/blog/2006/06/24/585/</link>
		<comments>http://nozell.com/blog/2006/06/24/585/#comments</comments>
		<pubDate>Sat, 24 Jun 2006 18:10:30 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/archives/2006/06/24/585/</guid>
		<description><![CDATA[This is a follow on to last week&#8217;s post about Dual Monitor on Ubuntu/Dapper I&#8217;ve been using the xorg.conf-ati.20060621 configuration at work with two monitors, but when at home the laptop didn&#8217;t degrade down to working with the one LCD monitor of the laptop. So, here is a new configuration that lets you switch between [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow on to last week&#8217;s post about <a href="http://nozell.com/blog/archives/2006/06/21/dual-monitor-on-ubuntudapper/">Dual Monitor on Ubuntu/Dapper</a></p>
<p>I&#8217;ve been using the xorg.conf-ati.20060621 configuration at work with two monitors, but when at home the laptop didn&#8217;t degrade down to working with the one LCD monitor of the laptop.  So,  here is a new configuration that lets you switch between a single monitor mode (1024&#215;768) or one large one (2048&#215;768) that can be &#8216;slid over to&#8217; by using the mouse.  The key press is Control-Alt-+ (the + over on the side where the number entry is).  On the laptop, it is Control-Alt-blue_Fn-?</p>
<p>Here the is xorg.conf file:<br />
<a href="http://nozell.com/examples/xorg.conf-ati-works-with-one-monitor.20060624"><br />
xorg.conf-ati-works-with-one-monitor.20060624</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2006/06/24/585/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dual Monitor on Ubuntu/Dapper</title>
		<link>http://nozell.com/blog/2006/06/21/dual-monitor-on-ubuntudapper/</link>
		<comments>http://nozell.com/blog/2006/06/21/dual-monitor-on-ubuntudapper/#comments</comments>
		<pubDate>Wed, 21 Jun 2006 17:38:20 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/archives/2006/06/21/dual-monitor-on-ubuntudapper/</guid>
		<description><![CDATA[I&#8217;ve noticed a number of people asking about dual head support in dapper on #ubuntu, so here is my setup: This hp/compaq nc6000 laptop/notebook that has an ATI card: $ sudo lspci&#124;grep VGA 0000:01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] I have two head monitors working with both the &#8216;ati&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve noticed a number of people asking about dual head support in dapper on #ubuntu, so here is my setup:</p>
<p>This hp/compaq nc6000 laptop/notebook that has an ATI card:</p>
<p><code><br />
$ sudo lspci|grep VGA<br />
0000:01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10]<br />
</code></p>
<p>I have two head monitors working with both the &#8216;ati&#8217; and the closed source &#8216;fglrx&#8217; drivers.  </p>
<p>Here are the configuration files:</p>
<li><a href="http://nozell.com/examples/xorg.conf-fglrx.20060621">xorg.conf-fglrx.20060621</a> &#8212; works when booting without the second monitor</li>
<li><a href="http://nozell.com/examples/xorg.conf-ati.20060621">xorg.conf-ati.20060621</a> &#8212; when booting with out the second monitor attached, it still thinks it is there.  Some windows may pop up on the unreachable monitor.  </li>
<p>Before you start hacking around with your xorg.conf, save a copy somewhere safe.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2006/06/21/dual-monitor-on-ubuntudapper/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>w32codecs for ubuntu &#8216;hoary&#8217;</title>
		<link>http://nozell.com/blog/2005/07/22/w32codecs-for-ubuntu-hoary/</link>
		<comments>http://nozell.com/blog/2005/07/22/w32codecs-for-ubuntu-hoary/#comments</comments>
		<pubDate>Fri, 22 Jul 2005 23:23:58 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=490</guid>
		<description><![CDATA[The stock Ubuntu repositories don&#8217;t include the w32codecs (wmvdmod.dll, etc) so xine, mplayer can play WMV and other formats. Basically the package puts 127 DLLs in /usr/lib/w32codecs. So, I temporarily added the following line to my /etc/apt/sources.list deb ftp://ftp.nerim.net/debian-marillat/ testing main And then did this: apt-get update &#038;&#038; apt-get install w32codecs I then commented that [...]]]></description>
			<content:encoded><![CDATA[<p>The stock Ubuntu repositories don&#8217;t include the w32codecs (wmvdmod.dll, etc) so xine, mplayer can play WMV and other formats.  Basically the package puts 127 DLLs in /usr/lib/w32codecs.</p>
<p>So, I temporarily added the following line to my /etc/apt/sources.list</p>
<p><code>deb ftp://ftp.nerim.net/debian-marillat/ testing main</code></p>
<p>And then did this: </p>
<p><code><br />
apt-get update &#038;&#038; apt-get install w32codecs<br />
</code></p>
<p>I then commented that line out since and apt-get upgrade would have picked  up a bunch of updated packages from that repository.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2005/07/22/w32codecs-for-ubuntu-hoary/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Migrating to Ubuntu Hoary on my laptop</title>
		<link>http://nozell.com/blog/2005/07/21/migrating-to-ubuntu-hoary-on-my-laptop/</link>
		<comments>http://nozell.com/blog/2005/07/21/migrating-to-ubuntu-hoary-on-my-laptop/#comments</comments>
		<pubDate>Fri, 22 Jul 2005 00:33:54 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/archives/2005/07/21/migrating-to-ubuntu-hoary-on-my-laptop/</guid>
		<description><![CDATA[I&#8217;ve been running Debian/Sarge (now the stable branch) on my laptop for quite a while now and its time to try a new distro for dailyl use &#8212; Ubuntu. This week I&#8217;ve been running Ubuntu &#8216;Hoary&#8217; and the transition has been very smooth. The only configuration issue was I wanted to use ALSA on this [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been running Debian/Sarge (now the stable branch) on my laptop for quite a while now and its time to try a new distro for dailyl use &#8212; Ubuntu.  This week I&#8217;ve been running Ubuntu &#8216;Hoary&#8217; and the transition has been very smooth.   </p>
<p>The only configuration issue was I wanted to use ALSA on this <a href="http://www.hp.com/go/notebooks">HP Compaq nc6000</a> laptop.  The install did detect the sound device, but did separate the speaker from<br />
the headphone controls.</p>
<p>phzi on #ubuntu pointed me to the unofficial <a href="http://www.UbuntuGuide.org">UbuntuGuide.org</a>, specifically the section <a href="http://ubuntuguide.org/#configuresoundproperly">configuresoundproperly</a>.  Those instructions were perfect.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2005/07/21/migrating-to-ubuntu-hoary-on-my-laptop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ipodder (v2.1) on Ubuntu &#8216;Hoary&#8217;</title>
		<link>http://nozell.com/blog/2005/07/21/ipodder-v21-on-ubuntu-hoary/</link>
		<comments>http://nozell.com/blog/2005/07/21/ipodder-v21-on-ubuntu-hoary/#comments</comments>
		<pubDate>Thu, 21 Jul 2005 20:54:03 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=488</guid>
		<description><![CDATA[I&#8217;d upgraded to the latest iPodder (v2.1) on my Ubuntu (&#8216;Hoary&#8217;) laptop today. # tar jxvf iPodder-linux-2.1.tar.bz2 # cd iPodder-linux # sudo ./install.sh (take the defaults) The only glitch is wx libraries aren&#8217;t in the default PYTHONPATH, so set this environment variable either at the command line, or pop it in ~/.bashrc export PYTHONPATH=/usr/lib/python2.4/site-packages/wx-2.5.3-gtk2-unicode/:$PYTHONPATH-unicode:$PYTHONPATH Now [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d upgraded to the latest iPodder (v2.1) on my Ubuntu (&#8216;Hoary&#8217;) <a href="http://h10010.www1.hp.com/wwpc/us/en/sm/WF25a/321957-64295-89315-321838-f33-367367.html">laptop</a> today.  </p>
<p><code># tar jxvf iPodder-linux-2.1.tar.bz2 </code></p>
<p><code># cd iPodder-linux</code></p>
<p><code># sudo ./install.sh</code></p>
<p>(take the defaults)</p>
<p>The only glitch is wx libraries aren&#8217;t in the default PYTHONPATH, so set this environment variable either at the command line, or pop it in ~/.bashrc</p>
<p><code>export PYTHONPATH=/usr/lib/python2.4/site-packages/wx-2.5.3-gtk2-unicode/:$PYTHONPATH-unicode:$PYTHONPATH<br />
</code></p>
<p>Now clean up a little bit&#8230;</p>
<p><code><br />
$ cd ../</p>
<p>$ rm -rf iPodder-linux  iPodder-linux-2.1.tar.bz2<br />
</code></p>
<p>Now, you are all set to start iPodder!</p>
<p><code></p>
<p>$ (nohup iPodder&#038;)    # or add it to a menu bar button</p>
<p></code></p>
<p>Getting closer to not needing any special knowledge to get iPodder running on a GNU/Linux distro&#8230;</p>
<p>- &#8211; - &#8211; - </p>
<p>Just for searchers, this is the problem you see if you don&#8217;t set the PYTHONPATH:</p>
<p><code><br />
$ iPodder <br />
Traceback (most recent call last): <br />
  File "iPodderGui.py", line 38, in ? <br />
    import iPodderWindows <br />
  File "/opt/iPodder/iPodderWindows.py", line 4, in ? <br />
    import  listctrl  as  listmix <br />
  File "/opt/iPodder/listctrl.py", line 296, in ? <br />
    EVT_DOPOPUPMENU = wx.PyEventBinder(wxEVT_DOPOPUPMENU, 0) <br />
AttributeError: 'module' object has no attribute 'PyEventBinder' <br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2005/07/21/ipodder-v21-on-ubuntu-hoary/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>ubuntu upgrade hosed wordpress</title>
		<link>http://nozell.com/blog/2005/04/27/ubuntu-upgrade-hosed-wordpress/</link>
		<comments>http://nozell.com/blog/2005/04/27/ubuntu-upgrade-hosed-wordpress/#comments</comments>
		<pubDate>Wed, 27 Apr 2005 19:42:17 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/archives/2005/04/27/445/</guid>
		<description><![CDATA[A while ago I upgraded desktop/server at work that holds my work blog from ubuntu &#8216;warty warthog&#8217; (initial release) to ubuntu &#8216;hoary hedgehog&#8217; (current release). Everything went just fine except apache2/php4/mysql had some problems and the blog stopped working. The problem was WordPress 1.5 couldn&#8217;t connect to mysql, but phpmyadmin could connect just fine. Strange. [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago I upgraded desktop/server at work that holds my work blog from <a href="http://ubunutlinux.org">ubuntu</a> &#8216;warty warthog&#8217; (initial release) to <a href="http://ubunutlinux.org">ubuntu</a> &#8216;hoary hedgehog&#8217; (current release).  Everything<br />
went just fine except apache2/php4/mysql had some problems and the blog stopped working.  </p>
<p>The problem was WordPress 1.5 couldn&#8217;t connect to mysql, but phpmyadmin could connect just fine.  Strange.  This is what I ended up doing:</p>
<p><code><br />
$ sudo apt-get --purge remove apache2 phpmyadmin php4 (and maybe a few others that depended on apache or php)</p>
<p>... verify that /etc/apache2/, /etc/php4 were gone...</p>
<p>$ sudo apt-get install apache2 php4 phpmyadmin<br />
</code></p>
<p>At appears that one of the configuration files for either php4 or apache2 didn&#8217;t get properly upgraded.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2005/04/27/ubuntu-upgrade-hosed-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

